結果

問題 No.1849 Three Times Value
ユーザー colognecologne
提出日時 2022-03-14 20:02:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 196 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 67,916 KB
最終ジャッジ日時 2024-09-21 08:06:28
合計ジャッジ時間 2,617 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,312 KB
testcase_01 AC 36 ms
53,024 KB
testcase_02 AC 39 ms
52,872 KB
testcase_03 AC 38 ms
52,408 KB
testcase_04 AC 38 ms
52,504 KB
testcase_05 AC 37 ms
52,072 KB
testcase_06 AC 49 ms
67,432 KB
testcase_07 AC 37 ms
52,576 KB
testcase_08 AC 38 ms
51,948 KB
testcase_09 AC 50 ms
67,508 KB
testcase_10 AC 50 ms
67,184 KB
testcase_11 AC 49 ms
67,916 KB
testcase_12 AC 50 ms
67,900 KB
testcase_13 AC 43 ms
60,000 KB
testcase_14 AC 43 ms
59,016 KB
testcase_15 AC 39 ms
54,344 KB
testcase_16 AC 50 ms
67,348 KB
testcase_17 AC 44 ms
60,020 KB
testcase_18 AC 38 ms
53,208 KB
testcase_19 AC 38 ms
52,568 KB
testcase_20 AC 38 ms
52,160 KB
testcase_21 AC 38 ms
52,124 KB
testcase_22 AC 39 ms
52,284 KB
testcase_23 AC 38 ms
52,488 KB
testcase_24 AC 39 ms
53,184 KB
testcase_25 AC 38 ms
53,012 KB
testcase_26 AC 42 ms
58,332 KB
testcase_27 AC 43 ms
59,760 KB
testcase_28 AC 38 ms
52,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools


def main():
    N = int(input())
    for i in itertools.count(1):
        if int(str(i)*3) > N:
            print(i-1)
            break


if __name__ == '__main__':
    main()
0