結果
問題 | No.909 たぴの配置 |
ユーザー |
|
提出日時 | 2025-01-20 19:47:57 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 396 ms / 3,000 ms |
コード長 | 208 bytes |
コンパイル時間 | 624 ms |
コンパイル使用メモリ | 12,160 KB |
実行使用メモリ | 38,260 KB |
最終ジャッジ日時 | 2025-01-20 19:48:08 |
合計ジャッジ時間 | 8,685 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 13 |
ソースコード
n = int(input())x = list(map(int, input().split()))y = list(map(int, input().split()))ans = min([x[i] + y[i] for i in range(n)])print(ans)print(0)for i in range(n):print(min(x[i], ans))print(ans)