結果
| 問題 |
No.207 世界のなんとか
|
| コンテスト | |
| ユーザー |
mizuhiro
|
| 提出日時 | 2025-09-01 14:16:17 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 100 bytes |
| コンパイル時間 | 347 ms |
| コンパイル使用メモリ | 82,892 KB |
| 実行使用メモリ | 54,244 KB |
| 最終ジャッジ日時 | 2025-09-01 14:16:20 |
| 合計ジャッジ時間 | 1,957 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 4 WA * 15 |
ソースコード
n, m = map(int, input().split()) for i in range(n, m+1): if i % 3 == 0 or str(i) in "3": print(i)
mizuhiro