結果
| 問題 | No.851 テストケース |
| コンテスト | |
| ユーザー |
a_ka_me_ga_ne
|
| 提出日時 | 2019-07-30 16:44:05 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 187 bytes |
| 記録 | |
| コンパイル時間 | 1,258 ms |
| コンパイル使用メモリ | 20,444 KB |
| 実行使用メモリ | 15,360 KB |
| 最終ジャッジ日時 | 2026-03-26 06:51:42 |
| 合計ジャッジ時間 | 4,394 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 20 |
ソースコード
N = int(input())
a = [int(i) for i in input().split()]
if a.__len__() > 2:
print("assert")
else:
for i in range(2):
a.append(int(input()))
a.sort()
print(a[1])
a_ka_me_ga_ne