結果
問題 | No.1816 MUL-DIV Game |
ユーザー |
👑 |
提出日時 | 2022-01-23 01:47:01 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 151 bytes |
コンパイル時間 | 206 ms |
コンパイル使用メモリ | 82,428 KB |
実行使用メモリ | 83,456 KB |
最終ジャッジ日時 | 2024-11-28 14:24:01 |
合計ジャッジ時間 | 3,414 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 WA * 1 |
other | AC * 24 WA * 3 |
ソースコード
n = int(input()) if n % 2 == 1: print(1) exit() A = list(map(int, input().split())) A.sort(reverse = True) a = A.pop() A[-1] *= a print(min(A))