結果

問題 No.207 世界のなんとか
ユーザー fV9TwBhUoa9S3eV
提出日時 2019-09-12 10:20:01
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 33 ms / 5,000 ms
コード長 141 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-02 17:01:32
合計ジャッジ時間 1,381 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input().split()
A = int(s[0])
B = int(s[1])

for i in range(A, B + 1):
    tmp = str(i)
    if i % 3 == 0 or '3' in tmp:
        print(i)
0