結果

問題 No.2357 Guess the Function
ユーザー ゼットゼット
提出日時 2024-02-17 09:08:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 1,000 ms
コード長 235 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 69,760 KB
平均クエリ数 2.91
最終ジャッジ日時 2024-09-28 23:34:08
合計ジャッジ時間 1,652 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
69,760 KB
testcase_01 AC 52 ms
69,164 KB
testcase_02 AC 49 ms
69,028 KB
testcase_03 AC 49 ms
69,064 KB
testcase_04 AC 50 ms
68,416 KB
testcase_05 AC 47 ms
68,872 KB
testcase_06 AC 53 ms
69,428 KB
testcase_07 AC 50 ms
69,388 KB
testcase_08 AC 48 ms
69,640 KB
testcase_09 AC 48 ms
68,812 KB
testcase_10 AC 49 ms
69,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

print('?',100,flush=True)
y=int(input())
pos=y
if y==99:
  print('!',99,100,flush=True)
  exit()
z=100-y
print('?',z-1,flush=True)
y=int(input())
B=y+1
for x in range(B):
  if (x+100)%B==pos:
    A=x
    break
print('!',A,B,flush=True)
0