結果

問題 No.2357 Guess the Function
ユーザー navel_tosnavel_tos
提出日時 2023-06-23 22:22:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 716 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 79,928 KB
平均クエリ数 2.82
最終ジャッジ日時 2024-07-01 02:05:50
合計ジャッジ時間 1,871 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
79,872 KB
testcase_01 WA -
testcase_02 AC 69 ms
79,872 KB
testcase_03 AC 69 ms
79,928 KB
testcase_04 AC 70 ms
79,360 KB
testcase_05 WA -
testcase_06 AC 68 ms
79,408 KB
testcase_07 AC 68 ms
79,464 KB
testcase_08 WA -
testcase_09 AC 69 ms
78,776 KB
testcase_10 AC 69 ms
79,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Z=[47, 47, 43, 43, 41, 39, 37, 35, 33, 31, 29, 27, 25, 23, 21, 19, 16, 15, 13, 11, 9, 7, 5, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 100, 1, 98, 97, 96, 95, 94, 93, 92, 91, 90, 89, 88, 87, 86, 85, 84, 83, 82, 81, 80, 79, 78, 77, 76, 75, 74, 73, 72, 71, 70, 69, 68, 67, 66, 65, 64, 63, 62, 61, 60, 59, 58, 57, 56, 55, 54, 53, 52, 51, 1, 1]
print('?',50); N=int(input()); print('?',Z[N]); M=int(input())

X=[set() for _ in range(101)]
for A in range(1,101):
    for B in range(A+1,101):
        X[(50+A)%B].add((A,B))
Y=[set() for _ in range(101)]
for i in range(101):
    for A,B in X[i]:
        Y[i].add(((Z[i]+A)%B,A,B))

for x,A,B in Y[N]:
    if x==M: print('!',A,B); exit()
0