結果

問題 No.1849 Three Times Value
ユーザー harapecoharapeco
提出日時 2022-03-10 17:32:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 105 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 87,196 KB
実行使用メモリ 76,540 KB
最終ジャッジ日時 2023-10-12 19:56:20
合計ジャッジ時間 5,758 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
76,540 KB
testcase_01 AC 87 ms
76,396 KB
testcase_02 AC 86 ms
76,452 KB
testcase_03 AC 85 ms
76,108 KB
testcase_04 AC 86 ms
76,128 KB
testcase_05 AC 85 ms
76,332 KB
testcase_06 AC 87 ms
76,236 KB
testcase_07 AC 86 ms
76,508 KB
testcase_08 AC 85 ms
76,520 KB
testcase_09 AC 87 ms
76,292 KB
testcase_10 AC 87 ms
76,456 KB
testcase_11 AC 88 ms
76,180 KB
testcase_12 AC 86 ms
76,452 KB
testcase_13 AC 87 ms
76,252 KB
testcase_14 AC 89 ms
76,328 KB
testcase_15 AC 86 ms
76,540 KB
testcase_16 AC 87 ms
76,272 KB
testcase_17 AC 88 ms
76,452 KB
testcase_18 AC 86 ms
76,448 KB
testcase_19 AC 86 ms
76,268 KB
testcase_20 AC 87 ms
76,272 KB
testcase_21 AC 88 ms
76,288 KB
testcase_22 AC 88 ms
76,264 KB
testcase_23 AC 86 ms
76,520 KB
testcase_24 AC 87 ms
76,428 KB
testcase_25 AC 86 ms
76,172 KB
testcase_26 AC 89 ms
76,464 KB
testcase_27 AC 88 ms
76,352 KB
testcase_28 AC 86 ms
76,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
cnt = 0
for i in range(1,100001):
    if int(str(i)*3) <= n:
        cnt += 1
print(cnt)
0