結果

問題 No.909 たぴの配置
ユーザー hedwig100hedwig100
提出日時 2020-04-10 16:21:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 402 ms / 3,000 ms
コード長 611 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 41,032 KB
最終ジャッジ日時 2024-09-15 04:29:09
合計ジャッジ時間 6,900 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,496 KB
testcase_01 AC 35 ms
10,752 KB
testcase_02 AC 31 ms
10,496 KB
testcase_03 AC 31 ms
10,496 KB
testcase_04 AC 29 ms
10,496 KB
testcase_05 AC 390 ms
39,252 KB
testcase_06 AC 400 ms
40,220 KB
testcase_07 AC 370 ms
37,672 KB
testcase_08 AC 392 ms
38,572 KB
testcase_09 AC 402 ms
40,052 KB
testcase_10 AC 374 ms
38,820 KB
testcase_11 AC 369 ms
37,372 KB
testcase_12 AC 383 ms
39,912 KB
testcase_13 AC 399 ms
41,032 KB
testcase_14 AC 375 ms
37,672 KB
testcase_15 AC 371 ms
36,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7
INF = 10 ** 12
import sys
sys.setrecursionlimit(100000000)
dy = (-1,0,1,0)
dx = (0,1,0,-1)
from  itertools import permutations

def main():
    n = int(input())
    ans = [0] * (n + 2)
    M = INF
    X = list(map(int,input().split()))
    Y = list(map(int,input().split()))
    for i in range(n):
        M = min(M,X[i] + Y[i])
    ans[n + 1] = M
    
    for i in range(n):
        x = X[i]
        y = Y[i]
        if x < y:
            ans[i + 1] = min(x,M)
        else:
            ans[i + 1] = max(M - y,0)
    print(M)
    print(*ans,sep = '\n')

if __name__ =='__main__':
    main()  
0