結果

問題 No.2357 Guess the Function
ユーザー ShirotsumeShirotsume
提出日時 2023-06-23 23:25:14
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 473 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,052 KB
実行使用メモリ 84,848 KB
平均クエリ数 2.91
最終ジャッジ日時 2024-07-01 03:13:38
合計ジャッジ時間 1,872 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,856 KB
testcase_01 AC 67 ms
72,228 KB
testcase_02 AC 67 ms
71,872 KB
testcase_03 RE -
testcase_04 AC 69 ms
73,692 KB
testcase_05 AC 65 ms
72,048 KB
testcase_06 AC 68 ms
73,444 KB
testcase_07 AC 66 ms
71,632 KB
testcase_08 AC 66 ms
72,800 KB
testcase_09 AC 66 ms
73,172 KB
testcase_10 AC 66 ms
72,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353

print('?', 100, flush=True)
x = ii()

print('?', 100 - x - 1, flush=True)
y = ii()
b = y + 1

for a in range(0, b):
    if (100 + a) % b == x and (100 - x - 1 + a) % b == y:
        print('!', a, b, flush=True)
        exit()
0