結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー ThetaTheta
提出日時 2022-10-20 11:14:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 523 ms / 2,000 ms
コード長 381 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 49,800 KB
最終ジャッジ日時 2024-06-30 05:13:54
合計ジャッジ時間 14,128 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 437 ms
43,784 KB
testcase_01 AC 428 ms
44,308 KB
testcase_02 AC 491 ms
47,120 KB
testcase_03 AC 435 ms
43,920 KB
testcase_04 AC 493 ms
48,136 KB
testcase_05 AC 435 ms
43,920 KB
testcase_06 AC 520 ms
49,552 KB
testcase_07 AC 477 ms
45,832 KB
testcase_08 AC 519 ms
49,160 KB
testcase_09 AC 494 ms
45,692 KB
testcase_10 AC 500 ms
47,372 KB
testcase_11 AC 516 ms
49,680 KB
testcase_12 AC 482 ms
46,224 KB
testcase_13 AC 485 ms
46,224 KB
testcase_14 AC 514 ms
49,044 KB
testcase_15 AC 494 ms
47,904 KB
testcase_16 AC 523 ms
44,872 KB
testcase_17 AC 435 ms
44,184 KB
testcase_18 AC 461 ms
44,680 KB
testcase_19 AC 481 ms
45,328 KB
testcase_20 AC 468 ms
44,944 KB
testcase_21 AC 483 ms
46,228 KB
testcase_22 AC 433 ms
44,168 KB
testcase_23 AC 428 ms
44,304 KB
testcase_24 AC 517 ms
49,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate
from numpy import diff


def main():
    N, D = map(int, input().split())
    others = accumulate(map(int, input().split()))
    moved = [0]

    for person in others:
        if person - moved[-1] < D:
            moved.append(moved[-1] + D)
        else:
            moved.append(person)
    print(*moved)


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