結果
問題 | No.2357 Guess the Function |
ユーザー | navel_tos |
提出日時 | 2023-06-23 22:28:44 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 407 bytes |
コンパイル時間 | 150 ms |
コンパイル使用メモリ | 82,292 KB |
実行使用メモリ | 77,464 KB |
平均クエリ数 | 2.82 |
最終ジャッジ日時 | 2024-07-01 02:12:26 |
合計ジャッジ時間 | 1,828 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 65 ms
76,448 KB |
testcase_01 | WA | - |
testcase_02 | AC | 65 ms
76,348 KB |
testcase_03 | AC | 64 ms
76,220 KB |
testcase_04 | AC | 63 ms
74,696 KB |
testcase_05 | WA | - |
testcase_06 | AC | 64 ms
75,736 KB |
testcase_07 | AC | 63 ms
75,460 KB |
testcase_08 | WA | - |
testcase_09 | AC | 65 ms
76,060 KB |
testcase_10 | AC | 61 ms
75,764 KB |
ソースコード
print('?',50); N=int(input()) #A+50が余りNとなる組を抽出 X=set() for A in range(1,101): for B in range(A+1,101): if (A+50)%B==N: X.add((A,B)) #次の質問を決める for y in range(1,101): Y=set() for A,B in X: Y.add((A+y)%B) if len(Y)!=len(X): continue else: break print('?',y); M=int(input()) for A,B in X: if (A+y)%B==M: print('!',A,B); exit()