結果
問題 |
No.207 世界のなんとか
|
ユーザー |
![]() |
提出日時 | 2025-03-20 20:17:45 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 39 ms / 5,000 ms |
コード長 | 170 bytes |
コンパイル時間 | 156 ms |
コンパイル使用メモリ | 82,364 KB |
実行使用メモリ | 53,816 KB |
最終ジャッジ日時 | 2025-03-20 20:17:49 |
合計ジャッジ時間 | 1,518 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 19 |
ソースコード
A, B = map(int, input().split()) results = [] for x in range(A, B + 1): if x % 3 == 0 or '3' in str(x): results.append(x) for num in results: print(num)