結果
| 問題 |
No.207 世界のなんとか
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-02-25 00:56:45 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 155 bytes |
| コンパイル時間 | 282 ms |
| コンパイル使用メモリ | 82,220 KB |
| 実行使用メモリ | 54,060 KB |
| 最終ジャッジ日時 | 2024-09-29 10:30:51 |
| 合計ジャッジ時間 | 1,512 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 4 WA * 15 |
ソースコード
a,b=map(int, input().split()) def check(num): if num <=64: if num%3==0: print(num) else: check(num) for i in range(a,b+1): if i%3==0: print(i)