結果
| 問題 | No.851 テストケース |
| コンテスト | |
| ユーザー |
rythem00359
|
| 提出日時 | 2020-08-15 15:30:13 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 96 ms / 3,153 ms |
| コード長 | 200 bytes |
| 記録 | |
| コンパイル時間 | 460 ms |
| コンパイル使用メモリ | 20,568 KB |
| 実行使用メモリ | 15,360 KB |
| 最終ジャッジ日時 | 2026-04-26 20:33:22 |
| 合計ジャッジ時間 | 3,924 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 20 |
ソースコード
N=int(input())
a=input()
if ' ' in a:
print('"assert"')
else:
A=[int(a),int(input()),int(input())]
B=[A[i]+A[i+1] for i in range(-1,2)]
B.sort()
print(B[0] if B[2]==B[1] else B[1])
rythem00359