結果
問題 |
No.8093 Please GCD
|
ユーザー |
![]() |
提出日時 | 2022-04-01 22:20:19 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 278 bytes |
コンパイル時間 | 284 ms |
コンパイル使用メモリ | 82,072 KB |
実行使用メモリ | 79,824 KB |
平均クエリ数 | 601.00 |
最終ジャッジ日時 | 2024-11-20 09:55:23 |
合計ジャッジ時間 | 20,227 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 1 WA * 29 |
ソースコード
mod = 998244353 def main(): import sys input = sys.stdin.readline N = int(input()) for _ in range(600): print("?", 1) sys.stdout.flush() s = int(input()) print("!", 1) sys.stdout.flush() if __name__ == '__main__': main()