結果

問題 No.1849 Three Times Value
ユーザー lllllll88938494lllllll88938494
提出日時 2023-04-26 07:11:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 247 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,660 KB
実行使用メモリ 67,068 KB
最終ジャッジ日時 2024-11-15 15:41:11
合計ジャッジ時間 2,629 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,340 KB
testcase_01 AC 38 ms
53,276 KB
testcase_02 AC 38 ms
52,960 KB
testcase_03 AC 39 ms
53,028 KB
testcase_04 AC 39 ms
52,080 KB
testcase_05 AC 39 ms
52,188 KB
testcase_06 AC 54 ms
67,008 KB
testcase_07 AC 37 ms
52,384 KB
testcase_08 AC 39 ms
52,456 KB
testcase_09 AC 55 ms
67,068 KB
testcase_10 AC 54 ms
66,204 KB
testcase_11 AC 54 ms
66,556 KB
testcase_12 AC 54 ms
66,820 KB
testcase_13 AC 44 ms
60,592 KB
testcase_14 AC 43 ms
59,176 KB
testcase_15 AC 40 ms
53,708 KB
testcase_16 AC 38 ms
52,504 KB
testcase_17 AC 38 ms
52,376 KB
testcase_18 AC 38 ms
51,980 KB
testcase_19 AC 39 ms
52,556 KB
testcase_20 AC 38 ms
51,856 KB
testcase_21 AC 38 ms
52,084 KB
testcase_22 AC 38 ms
52,676 KB
testcase_23 AC 38 ms
53,172 KB
testcase_24 AC 39 ms
52,504 KB
testcase_25 AC 38 ms
52,912 KB
testcase_26 AC 43 ms
59,228 KB
testcase_27 AC 38 ms
52,320 KB
testcase_28 AC 38 ms
52,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=input()
if len(N) < 3:
    print(0)
    exit()
if len(N)%3 != 0:
    print('9'*(len(N)//3))
    exit()
    
n=N[:len(N)//3]

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