結果
| 問題 | No.2357 Guess the Function |
| コンテスト | |
| ユーザー |
👑 |
| 提出日時 | 2023-04-16 11:57:40 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 111 ms / 1,000 ms |
| コード長 | 148 bytes |
| 記録 | |
| コンパイル時間 | 1,061 ms |
| コンパイル使用メモリ | 20,832 KB |
| 実行使用メモリ | 35,504 KB |
| 平均クエリ数 | 2.91 |
| 最終ジャッジ日時 | 2026-05-25 07:53:29 |
| 合計ジャッジ時間 | 3,469 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 10 |
ソースコード
print("? 100")
y=int(input())
if y==99:
A=99
B=100
else:
print("? "+str(99-y))
B=int(input())+1
A=(y+(B-1)*100)%B
print("! "+str(A)+" "+str(B))