結果

問題 No.1849 Three Times Value
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2022-02-28 01:49:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 122 bytes
コンパイル時間 591 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 70,980 KB
最終ジャッジ日時 2024-07-06 04:45:37
合計ジャッジ時間 2,573 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
70,468 KB
testcase_01 AC 47 ms
69,024 KB
testcase_02 AC 43 ms
69,504 KB
testcase_03 AC 44 ms
68,828 KB
testcase_04 AC 44 ms
69,136 KB
testcase_05 AC 44 ms
68,700 KB
testcase_06 AC 47 ms
70,084 KB
testcase_07 AC 44 ms
68,872 KB
testcase_08 AC 46 ms
70,524 KB
testcase_09 AC 50 ms
69,056 KB
testcase_10 AC 47 ms
70,284 KB
testcase_11 AC 44 ms
69,092 KB
testcase_12 AC 43 ms
68,868 KB
testcase_13 AC 47 ms
70,492 KB
testcase_14 AC 44 ms
69,732 KB
testcase_15 AC 43 ms
68,884 KB
testcase_16 AC 43 ms
69,476 KB
testcase_17 AC 48 ms
69,912 KB
testcase_18 AC 49 ms
69,936 KB
testcase_19 AC 48 ms
69,136 KB
testcase_20 AC 46 ms
69,256 KB
testcase_21 AC 48 ms
68,820 KB
testcase_22 AC 44 ms
70,232 KB
testcase_23 AC 45 ms
69,172 KB
testcase_24 AC 43 ms
70,548 KB
testcase_25 AC 45 ms
69,944 KB
testcase_26 AC 45 ms
70,980 KB
testcase_27 AC 47 ms
69,820 KB
testcase_28 AC 43 ms
69,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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