結果
| 問題 |
No.3084 Identify f(x)
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-04-28 11:57:30 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 247 bytes |
| コンパイル時間 | 456 ms |
| コンパイル使用メモリ | 82,048 KB |
| 実行使用メモリ | 69,120 KB |
| 平均クエリ数 | 3.00 |
| 最終ジャッジ日時 | 2025-04-28 11:57:33 |
| 合計ジャッジ時間 | 2,977 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 2 WA * 5 |
ソースコード
import sys
def input():
return sys.stdin.readline().strip()
def main():
print("? 0", flush=True)
print("? 1", flush=True)
a = int(input())
b = int(input())
print("!", a - b, b)
if __name__ == "__main__":
main()