結果

問題 No.207 世界のなんとか
ユーザー pypypymipypypymi
提出日時 2022-01-05 21:53:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 5,000 ms
コード長 113 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 53,836 KB
最終ジャッジ日時 2024-11-06 09:14:33
合計ジャッジ時間 1,765 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,260 KB
testcase_01 AC 39 ms
52,344 KB
testcase_02 AC 38 ms
52,700 KB
testcase_03 AC 38 ms
53,836 KB
testcase_04 AC 38 ms
52,280 KB
testcase_05 AC 36 ms
52,904 KB
testcase_06 AC 37 ms
52,616 KB
testcase_07 AC 38 ms
52,216 KB
testcase_08 AC 39 ms
52,556 KB
testcase_09 AC 41 ms
53,708 KB
testcase_10 AC 38 ms
53,500 KB
testcase_11 AC 37 ms
52,168 KB
testcase_12 AC 39 ms
52,028 KB
testcase_13 AC 38 ms
52,124 KB
testcase_14 AC 37 ms
52,396 KB
testcase_15 AC 36 ms
53,424 KB
testcase_16 AC 37 ms
52,552 KB
testcase_17 AC 37 ms
52,252 KB
testcase_18 AC 37 ms
52,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b = map(int,input().split())
for i in range(a,b+1):
    if (i%3==0) or ("3" in list(str(i))):
        print(i)
0