結果
| 問題 |
No.909 たぴの配置
|
| コンテスト | |
| ユーザー |
Salmonize
|
| 提出日時 | 2020-03-10 13:31:40 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 399 ms / 3,000 ms |
| コード長 | 186 bytes |
| コンパイル時間 | 171 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 40,200 KB |
| 最終ジャッジ日時 | 2024-11-15 23:11:47 |
| 合計ジャッジ時間 | 6,688 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 13 |
ソースコード
n = int(input())
f = tuple(map(int, input().split()))
g = tuple(map(int, input().split()))
h = min(x + y for x, y in zip(f,g))
print(h)
print(0)
for x in f:
print(min(h, x))
print(h)
Salmonize