結果

問題 No.1849 Three Times Value
ユーザー nyyanyya
提出日時 2022-12-23 00:13:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 162 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 69,912 KB
最終ジャッジ日時 2024-11-18 03:45:20
合計ジャッジ時間 2,255 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,980 KB
testcase_01 AC 33 ms
52,268 KB
testcase_02 AC 35 ms
53,224 KB
testcase_03 AC 32 ms
52,840 KB
testcase_04 AC 35 ms
52,996 KB
testcase_05 AC 34 ms
52,088 KB
testcase_06 AC 49 ms
68,748 KB
testcase_07 AC 32 ms
51,824 KB
testcase_08 AC 31 ms
52,076 KB
testcase_09 WA -
testcase_10 AC 44 ms
69,912 KB
testcase_11 AC 47 ms
69,420 KB
testcase_12 AC 43 ms
69,808 KB
testcase_13 AC 38 ms
60,776 KB
testcase_14 AC 36 ms
59,788 KB
testcase_15 AC 32 ms
53,284 KB
testcase_16 AC 57 ms
69,528 KB
testcase_17 AC 37 ms
60,432 KB
testcase_18 AC 33 ms
53,180 KB
testcase_19 AC 31 ms
51,996 KB
testcase_20 AC 32 ms
52,512 KB
testcase_21 AC 30 ms
51,756 KB
testcase_22 WA -
testcase_23 AC 34 ms
53,412 KB
testcase_24 AC 32 ms
53,828 KB
testcase_25 AC 33 ms
53,960 KB
testcase_26 AC 46 ms
59,588 KB
testcase_27 AC 40 ms
60,336 KB
testcase_28 AC 34 ms
51,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

ans = 0
now = 1
t = str(now) + str(now) + str(now)

while int(t)<n:
    ans += 1
    now += 1
    t = str(now) + str(now) + str(now)

print(ans)
0