結果
| 問題 |
No.3084 Identify f(x)
|
| コンテスト | |
| ユーザー |
detteiuu
|
| 提出日時 | 2025-04-05 13:02:41 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 58 ms / 2,000 ms |
| コード長 | 139 bytes |
| コンパイル時間 | 555 ms |
| コンパイル使用メモリ | 82,304 KB |
| 実行使用メモリ | 69,120 KB |
| 平均クエリ数 | 3.00 |
| 最終ジャッジ日時 | 2025-04-05 13:02:44 |
| 合計ジャッジ時間 | 1,800 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 7 |
ソースコード
def question(x):
print("?", x)
return int(input())
ans1 = question(0)
ans2 = question(1)
A = ans2-ans1
B = ans1
print("!", A, B)
detteiuu