結果

問題 No.671 1000000007
ユーザー koba-e964koba-e964
提出日時 2021-09-16 13:20:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 140 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,060 KB
実行使用メモリ 53,324 KB
最終ジャッジ日時 2024-06-29 14:22:49
合計ジャッジ時間 1,334 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,332 KB
testcase_01 AC 41 ms
52,216 KB
testcase_02 AC 37 ms
52,620 KB
testcase_03 AC 40 ms
52,448 KB
testcase_04 AC 36 ms
52,052 KB
testcase_05 AC 36 ms
52,500 KB
testcase_06 AC 35 ms
52,324 KB
testcase_07 AC 35 ms
52,084 KB
testcase_08 AC 35 ms
52,140 KB
testcase_09 AC 36 ms
52,444 KB
testcase_10 AC 35 ms
53,324 KB
testcase_11 AC 36 ms
52,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

import sys
readline = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)

n = input()
print(abs(len(n) - 10))
0