結果
問題 | No.851 テストケース |
ユーザー |
![]() |
提出日時 | 2019-07-28 19:44:34 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 327 bytes |
コンパイル時間 | 76 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-07-02 15:06:26 |
合計ジャッジ時間 | 1,339 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 WA * 1 |
other | AC * 17 WA * 3 |
ソースコード
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()