結果
| 問題 |
No.3347 Guess The Array
|
| コンテスト | |
| ユーザー |
Koi
|
| 提出日時 | 2025-11-14 00:11:49 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 161 bytes |
| コンパイル時間 | 352 ms |
| コンパイル使用メモリ | 82,492 KB |
| 実行使用メモリ | 84,224 KB |
| 平均クエリ数 | 1.09 |
| 最終ジャッジ日時 | 2025-11-14 00:11:57 |
| 合計ジャッジ時間 | 7,264 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 5 RE * 41 |
ソースコード
N = int(input())
if(N == 1):
print("!", 998)
else:
print("?", 2, 1, 1)
S = input()
if(S == "Yes"):
print("!", 998)
else:
x = 1/0
Koi