結果
問題 |
No.207 世界のなんとか
|
ユーザー |
|
提出日時 | 2022-05-14 17:38:35 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 195 bytes |
コンパイル時間 | 153 ms |
コンパイル使用メモリ | 82,224 KB |
実行使用メモリ | 54,344 KB |
最終ジャッジ日時 | 2024-07-23 03:33:58 |
合計ジャッジ時間 | 1,661 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 9 WA * 10 |
ソースコード
A, B = map(int, input().split()) for i in range(A, B+1): if i%3 == 0: print(i) else: for j in range(len(str(i))): if str(i)[j] == "3": print(i)