結果
| 問題 |
No.3372 Suitable Constraint
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-11-21 23:07:17 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 140 bytes |
| コンパイル時間 | 166 ms |
| コンパイル使用メモリ | 12,160 KB |
| 実行使用メモリ | 32,388 KB |
| 最終ジャッジ日時 | 2025-11-21 23:07:21 |
| 合計ジャッジ時間 | 3,236 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | AC * 5 WA * 14 |
ソースコード
def solve() : N = int(input()) A = [int(x) for x in input().split()] print(min(A) * max(A)) T = int(input()) for _ in range(T) : solve()