結果

問題 No.8093 Please GCD
ユーザー tamato
提出日時 2022-04-01 22:12:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 245 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 69,208 KB
平均クエリ数 2.00
最終ジャッジ日時 2024-11-20 09:37:59
合計ジャッジ時間 7,829 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 1 WA * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353


def main():
    import sys
    input = sys.stdin.readline
    
    N = int(input())
    print("?", 1)
    sys.stdout.flush()
    s = int(input())
    print("!", 1)
    sys.stdout.flush()


if __name__ == '__main__':
    main()
0