結果
| 問題 | No.909 たぴの配置 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-09-16 16:42:58 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 150 ms / 3,000 ms |
| コード長 | 201 bytes |
| コンパイル時間 | 395 ms |
| コンパイル使用メモリ | 82,436 KB |
| 実行使用メモリ | 110,664 KB |
| 最終ジャッジ日時 | 2024-06-22 03:21:55 |
| 合計ジャッジ時間 | 5,110 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 13 |
ソースコード
N = int(input())
X = list(map(int, input().split()))
Y = list(map(int, input().split()))
M = min([X[i] + Y[i] for i in range(N)])
print(M)
print(0)
for x in X:
print(min(x, M))
print(M)