結果
| 問題 | No.3521 接線の傾き |
| コンテスト | |
| ユーザー |
detteiuu
|
| 提出日時 | 2026-05-01 22:39:21 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 108 ms / 2,000 ms |
| コード長 | 194 bytes |
| 記録 | |
| コンパイル時間 | 251 ms |
| コンパイル使用メモリ | 84,992 KB |
| 実行使用メモリ | 71,968 KB |
| 平均クエリ数 | 4.00 |
| 最終ジャッジ日時 | 2026-05-01 22:39:27 |
| 合計ジャッジ時間 | 3,995 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 20 |
ソースコード
def question(n):
print("?", n)
return int(input())
def answer(c):
print("!", c)
D = int(input())
a, b, c = question(0), question(1), question(2)
d, e = b-a, c-b
answer((d+e)//2)
detteiuu