結果
| 問題 |
No.909 たぴの配置
|
| コンテスト | |
| ユーザー |
timi
|
| 提出日時 | 2021-01-06 10:40:18 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 486 ms / 3,000 ms |
| コード長 | 197 bytes |
| コンパイル時間 | 235 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 39,832 KB |
| 最終ジャッジ日時 | 2024-11-06 19:46:39 |
| 合計ジャッジ時間 | 8,378 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 13 |
ソースコード
N=int(input()) A=list(map(int, input().split())) B=list(map(int, input().split())) d=10**7 for i in range(N): d=min(d,A[i]+B[i]) print(d) print(0) for i in range(N): print(min(d,A[i])) print(d)
timi