結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー match1997match1997
提出日時 2020-09-07 15:10:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 245 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 20,716 KB
最終ジャッジ日時 2024-05-06 23:47:41
合計ジャッジ時間 4,390 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 144 ms
16,652 KB
testcase_03 AC 44 ms
11,392 KB
testcase_04 AC 148 ms
17,324 KB
testcase_05 AC 41 ms
11,136 KB
testcase_06 AC 172 ms
18,752 KB
testcase_07 AC 109 ms
14,948 KB
testcase_08 AC 197 ms
19,188 KB
testcase_09 AC 113 ms
15,196 KB
testcase_10 AC 136 ms
16,404 KB
testcase_11 AC 189 ms
19,580 KB
testcase_12 AC 120 ms
15,476 KB
testcase_13 AC 120 ms
15,428 KB
testcase_14 AC 183 ms
18,440 KB
testcase_15 AC 147 ms
16,792 KB
testcase_16 AC 83 ms
13,392 KB
testcase_17 AC 34 ms
11,008 KB
testcase_18 AC 81 ms
13,408 KB
testcase_19 AC 108 ms
14,848 KB
testcase_20 AC 99 ms
14,768 KB
testcase_21 AC 122 ms
15,484 KB
testcase_22 AC 31 ms
10,752 KB
testcase_23 AC 30 ms
10,624 KB
testcase_24 AC 182 ms
20,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, D = map(int,input().split())
*inp,=map(int,input().split())
ichi=[0]
for j in range(N-1):
    ichi.append(ichi[j]+inp[j])
for i in range(N-1):
    if ichi[i+1] - ichi[i] < D:
        ichi[i+1] = ichi[i] + D
for k in ichi:
    print(k,end=' ')
0