QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#249825 | #7534. KPI Calculation | Nestik_55# | RE | 0ms | 0kb | Python3 | 137b | 2023-11-12 16:20:32 | 2023-11-12 16:20:33 |
answer
f = open("input.txt", "r")
ans = 0
for line in f:
i = 0
while i < len(line) and line[i] == ' ':
ans += 1
i += 1
print(ans)
詳細信息
Test #1:
score: 0
Dangerous Syscalls
input:
#include <cstdio> int main() { int a,b; scanf ("%d%d",&a,&b); printf ("%d\n",a+b); return 0; }