結果

問題 No.1849 Three Times Value
ユーザー hir355hir355
提出日時 2022-02-26 01:46:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 108 bytes
コンパイル時間 451 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 68,372 KB
最終ジャッジ日時 2024-07-03 21:04:28
合計ジャッジ時間 2,533 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
65,920 KB
testcase_01 AC 50 ms
67,064 KB
testcase_02 AC 48 ms
66,644 KB
testcase_03 AC 47 ms
65,656 KB
testcase_04 AC 48 ms
66,172 KB
testcase_05 AC 48 ms
66,708 KB
testcase_06 AC 50 ms
67,832 KB
testcase_07 AC 48 ms
65,620 KB
testcase_08 AC 48 ms
65,708 KB
testcase_09 AC 46 ms
66,940 KB
testcase_10 AC 47 ms
65,764 KB
testcase_11 AC 48 ms
67,484 KB
testcase_12 AC 48 ms
66,436 KB
testcase_13 AC 51 ms
67,228 KB
testcase_14 AC 50 ms
68,372 KB
testcase_15 AC 49 ms
66,204 KB
testcase_16 AC 48 ms
66,324 KB
testcase_17 AC 51 ms
67,408 KB
testcase_18 AC 48 ms
65,900 KB
testcase_19 AC 48 ms
65,516 KB
testcase_20 AC 48 ms
65,912 KB
testcase_21 AC 48 ms
66,056 KB
testcase_22 AC 49 ms
66,504 KB
testcase_23 AC 49 ms
66,948 KB
testcase_24 AC 49 ms
66,368 KB
testcase_25 AC 47 ms
66,788 KB
testcase_26 AC 51 ms
67,636 KB
testcase_27 AC 50 ms
66,692 KB
testcase_28 AC 48 ms
66,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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