結果
| 問題 | No.2357 Guess the Function |
| コンテスト | |
| ユーザー |
detteiuu
|
| 提出日時 | 2026-05-05 00:55:40 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 176 bytes |
| 記録 | |
| コンパイル時間 | 127 ms |
| コンパイル使用メモリ | 85,448 KB |
| 実行使用メモリ | 85,704 KB |
| 平均クエリ数 | 2.91 |
| 最終ジャッジ日時 | 2026-05-05 00:55:42 |
| 合計ジャッジ時間 | 1,830 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 9 RE * 1 |
ソースコード
def question(x):
print("?", x)
return int(input())
def answer(A, B):
print("!", A, B)
a = question(100)
b = question(100-a-1)
B = b+1
A = (a-100)%B
answer(A, B)
detteiuu