結果
| 問題 | No.3084 Identify f(x) |
| コンテスト | |
| ユーザー |
nasutarou1341
|
| 提出日時 | 2025-04-04 21:24:17 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 109 ms / 2,000 ms |
| コード長 | 154 bytes |
| 記録 | |
| コンパイル時間 | 260 ms |
| コンパイル使用メモリ | 95,848 KB |
| 実行使用メモリ | 78,848 KB |
| 平均クエリ数 | 3.00 |
| 最終ジャッジ日時 | 2026-07-08 08:29:29 |
| 合計ジャッジ時間 | 1,759 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 7 |
ソースコード
def pri(x):
print("?", x, flush = True)
return int(input())
def ans(a, b):
print("!", a, b, flush = True)
b = pri(0)
t = pri(1)
a = t - b
ans(a, b)
nasutarou1341