結果

問題 No.2357 Guess the Function
ユーザー Alex WiceAlex Wice
提出日時 2023-06-23 22:01:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 1,000 ms
コード長 314 bytes
コンパイル時間 427 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 75,852 KB
平均クエリ数 3.00
最終ジャッジ日時 2024-07-01 01:38:39
合計ジャッジ時間 1,773 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
68,768 KB
testcase_01 AC 61 ms
68,872 KB
testcase_02 AC 60 ms
69,424 KB
testcase_03 AC 65 ms
74,944 KB
testcase_04 AC 64 ms
75,600 KB
testcase_05 AC 61 ms
69,108 KB
testcase_06 AC 63 ms
75,852 KB
testcase_07 AC 63 ms
75,316 KB
testcase_08 AC 60 ms
68,332 KB
testcase_09 AC 64 ms
75,556 KB
testcase_10 AC 64 ms
74,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

print("? 100")
sys.stdout.flush()
A100 = int(input())

X = 99 - 2 * A100
if X < 1:
    X = 1
print("?", X)
sys.stdout.flush()
AX = int(input())

for a in range(100):
    for b in range(a + 1, 101):
        if (a + 100) % b == A100 and (a + X) % b == AX:
            print("!", a, b)
            exit()
0