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