結果

問題 No.2357 Guess the Function
ユーザー 陽ダンカン陽ダンカン
提出日時 2024-08-11 17:41:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 256 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 69,740 KB
平均クエリ数 2.64
最終ジャッジ日時 2024-08-11 17:41:59
合計ジャッジ時間 1,975 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
68,576 KB
testcase_01 WA -
testcase_02 AC 53 ms
67,928 KB
testcase_03 AC 50 ms
68,568 KB
testcase_04 AC 55 ms
68,312 KB
testcase_05 WA -
testcase_06 AC 52 ms
68,568 KB
testcase_07 AC 53 ms
68,440 KB
testcase_08 WA -
testcase_09 AC 50 ms
68,312 KB
testcase_10 AC 51 ms
68,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

print("?",100,flush=True)
mod=int(input())
if mod==99:
    print("!",99,100,flush=True)
else:
    print("?",99-mod,flush=True)
    b=int(input())+1
    for a in range(1,b):
        if (a+100)%b==mod:
            print("!",a,b,flush=True)
            exit()
0