結果
| 問題 |
No.909 たぴの配置
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-01-19 00:03:32 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 158 ms / 3,000 ms |
| コード長 | 199 bytes |
| コンパイル時間 | 198 ms |
| コンパイル使用メモリ | 82,304 KB |
| 実行使用メモリ | 109,592 KB |
| 最終ジャッジ日時 | 2024-11-23 13:38:05 |
| 合計ジャッジ時間 | 5,790 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 13 |
ソースコード
n = int(input())
X = list(map(int, input().split()))
Y = list(map(int, input().split()))
max_ = min(x + y for x, y in zip(X, Y))
print(max_)
print(0)
for x in X:
print(min(x, max_))
print(max_)