結果
問題 | No.851 テストケース |
ユーザー |
![]() |
提出日時 | 2019-07-28 19:45:07 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 323 bytes |
コンパイル時間 | 104 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-07-02 15:06:29 |
合計ジャッジ時間 | 1,380 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 2 |
other | AC * 15 WA * 5 |
ソースコード
import sys input = sys.stdin.readline def main(): N = int(input()) tmp = list(map(int, input().split())) if len(tmp) > 1: print("assert") else: a = [tmp[0]] for i in range(N-1): a.append(int(input())) print(max(a) + min(a)) if __name__ == "__main__": main()