結果

問題 No.207 世界のなんとか
ユーザー miya145592miya145592
提出日時 2023-05-03 18:22:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 5,000 ms
コード長 111 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 86,924 KB
実行使用メモリ 71,568 KB
最終ジャッジ日時 2023-08-14 02:08:27
合計ジャッジ時間 3,015 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
71,464 KB
testcase_01 AC 57 ms
71,500 KB
testcase_02 AC 57 ms
71,168 KB
testcase_03 AC 58 ms
71,376 KB
testcase_04 AC 55 ms
71,532 KB
testcase_05 AC 57 ms
71,160 KB
testcase_06 AC 55 ms
71,444 KB
testcase_07 AC 56 ms
71,364 KB
testcase_08 AC 58 ms
71,364 KB
testcase_09 AC 56 ms
71,320 KB
testcase_10 AC 56 ms
71,532 KB
testcase_11 AC 55 ms
71,296 KB
testcase_12 AC 57 ms
71,324 KB
testcase_13 AC 56 ms
71,284 KB
testcase_14 AC 57 ms
71,568 KB
testcase_15 AC 56 ms
71,296 KB
testcase_16 AC 55 ms
71,260 KB
testcase_17 AC 57 ms
71,360 KB
testcase_18 AC 55 ms
71,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B = map(int, input().split())
for i in range(A, B+1):
    if i%3==0 or str(i).count("3")>0:
        print(i)
0