結果
| 問題 | No.207 世界のなんとか |
| コンテスト | |
| ユーザー |
Neochi
|
| 提出日時 | 2017-07-03 18:53:53 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 125 bytes |
| 記録 | |
| コンパイル時間 | 688 ms |
| コンパイル使用メモリ | 20,824 KB |
| 実行使用メモリ | 15,488 KB |
| 最終ジャッジ日時 | 2026-04-21 00:46:12 |
| 合計ジャッジ時間 | 3,484 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 9 WA * 10 |
ソースコード
N = input().split(" ")
for i in range(int(N[0]), int(N[1])):
if "3" in str(i):
print(i)
elif i % 3 == 0:
print(i)
Neochi