結果
| 問題 |
No.3059 Range Tournament
|
| コンテスト | |
| ユーザー |
lam6er
|
| 提出日時 | 2025-03-31 17:19:21 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 101 bytes |
| コンパイル時間 | 708 ms |
| コンパイル使用メモリ | 82,660 KB |
| 実行使用メモリ | 73,344 KB |
| 最終ジャッジ日時 | 2025-03-31 17:20:18 |
| 合計ジャッジ時間 | 6,942 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 2 |
| other | RE * 27 |
ソースコード
T = int(input())
for _ in range(T):
x = int(input())
print('Y' if x == 0 or x == 45 else 'N')
lam6er