結果

問題 No.1849 Three Times Value
ユーザー Omura ShunsukeOmura Shunsuke
提出日時 2022-05-14 22:09:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 119 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 81,988 KB
実行使用メモリ 70,980 KB
最終ジャッジ日時 2024-07-23 09:04:41
合計ジャッジ時間 2,705 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
70,480 KB
testcase_01 AC 48 ms
70,240 KB
testcase_02 AC 48 ms
68,936 KB
testcase_03 AC 48 ms
69,284 KB
testcase_04 AC 48 ms
70,548 KB
testcase_05 AC 48 ms
70,448 KB
testcase_06 AC 50 ms
69,956 KB
testcase_07 AC 47 ms
69,728 KB
testcase_08 AC 48 ms
68,960 KB
testcase_09 AC 48 ms
70,124 KB
testcase_10 AC 50 ms
69,680 KB
testcase_11 AC 49 ms
70,600 KB
testcase_12 AC 48 ms
70,512 KB
testcase_13 AC 51 ms
70,820 KB
testcase_14 AC 51 ms
70,980 KB
testcase_15 AC 48 ms
69,448 KB
testcase_16 AC 50 ms
69,576 KB
testcase_17 AC 52 ms
70,732 KB
testcase_18 AC 51 ms
69,012 KB
testcase_19 AC 48 ms
69,116 KB
testcase_20 AC 49 ms
69,468 KB
testcase_21 AC 49 ms
69,308 KB
testcase_22 AC 49 ms
70,260 KB
testcase_23 AC 49 ms
69,808 KB
testcase_24 AC 49 ms
70,712 KB
testcase_25 AC 51 ms
69,660 KB
testcase_26 AC 49 ms
70,096 KB
testcase_27 AC 50 ms
69,864 KB
testcase_28 AC 49 ms
70,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

ans = 0
for i in range(1,10**5+1):
    A = str(i) * 3
    if N >= int(A):
        ans += 1
print(ans)
0