結果
| 問題 | No.909 たぴの配置 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-09-16 16:42:58 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 103 ms / 3,000 ms |
| コード長 | 201 bytes |
| 記録 | |
| コンパイル時間 | 249 ms |
| コンパイル使用メモリ | 85,492 KB |
| 実行使用メモリ | 123,016 KB |
| 最終ジャッジ日時 | 2026-03-06 09:06:12 |
| 合計ジャッジ時間 | 3,685 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / 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)