結果
| 問題 | No.851 テストケース |
| コンテスト | |
| ユーザー |
Ohnuma
|
| 提出日時 | 2020-04-10 15:55:52 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
WA
不安定
|
| 実行時間 | - |
| コード長 | 235 bytes |
| 記録 | |
| コンパイル時間 | 713 ms |
| コンパイル使用メモリ | 21,284 KB |
| 実行使用メモリ | 15,868 KB |
| 最終ジャッジ日時 | 2026-08-27 17:27:51 |
| 合計ジャッジ時間 | 4,749 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 2 |
| other | AC * 3 WA * 17 |
ソースコード
n = int(input())
a = input()
if ' ' in a:
print('assert')
else:
a = int(a)
b = int(input())
c = int(input())
l = list(set(sorted([a+b, b+c, c+a])))
if len(l)==2:
print(l[0])
else:
print(l[1])
Ohnuma