結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー ThetaTheta
提出日時 2022-10-20 11:09:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 342 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 50,960 KB
最終ジャッジ日時 2024-06-30 05:09:01
合計ジャッジ時間 16,917 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 512 ms
43,796 KB
testcase_02 AC 562 ms
47,052 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 508 ms
43,792 KB
testcase_06 WA -
testcase_07 AC 548 ms
45,840 KB
testcase_08 WA -
testcase_09 AC 551 ms
45,452 KB
testcase_10 AC 560 ms
46,724 KB
testcase_11 WA -
testcase_12 AC 555 ms
45,840 KB
testcase_13 WA -
testcase_14 AC 581 ms
49,148 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 504 ms
44,048 KB
testcase_18 WA -
testcase_19 AC 545 ms
45,460 KB
testcase_20 AC 538 ms
44,700 KB
testcase_21 AC 555 ms
45,460 KB
testcase_22 AC 501 ms
44,048 KB
testcase_23 WA -
testcase_24 AC 610 ms
50,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from numpy import diff


def main():
    N, D = map(int, input().split())
    others = list(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