結果
| 問題 |
No.207 世界のなんとか
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-02-25 00:55:56 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 142 bytes |
| コンパイル時間 | 329 ms |
| コンパイル使用メモリ | 81,792 KB |
| 実行使用メモリ | 79,744 KB |
| 最終ジャッジ日時 | 2024-09-29 10:30:48 |
| 合計ジャッジ時間 | 2,592 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 4 WA * 2 RE * 13 |
ソースコード
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): check(i)