結果
| 問題 | No.8093 Please GCD |
| コンテスト | |
| ユーザー |
tamato
|
| 提出日時 | 2022-04-01 22:36:53 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 389 bytes |
| 記録 | |
| コンパイル時間 | 220 ms |
| コンパイル使用メモリ | 84,992 KB |
| 実行使用メモリ | 80,792 KB |
| 平均クエリ数 | 21.03 |
| 最終ジャッジ日時 | 2026-05-14 12:59:06 |
| 合計ジャッジ時間 | 6,722 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 WA * 29 |
ソースコード
mod = 998244353
def main():
import sys
input = sys.stdin.readline
N = int(input())
if N != 1:
exit()
for _ in range(600):
print("?", 1)
sys.stdout.flush()
s = int(input())
print("?", 1)
sys.stdout.flush()
s = int(input())
assert s == -1
print("!", 1)
sys.stdout.flush()
if __name__ == '__main__':
main()
tamato