結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー Iruyan_ZakIruyan_Zak
提出日時 2020-09-30 18:51:06
言語 PHP
(8.3.4)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 338 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 32,148 KB
実行使用メモリ 39,692 KB
最終ジャッジ日時 2024-07-06 06:37:10
合計ジャッジ時間 3,147 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
31,076 KB
testcase_01 AC 41 ms
31,300 KB
testcase_02 AC 59 ms
36,624 KB
testcase_03 AC 44 ms
31,372 KB
testcase_04 AC 62 ms
37,724 KB
testcase_05 AC 44 ms
31,368 KB
testcase_06 AC 62 ms
39,136 KB
testcase_07 AC 53 ms
34,956 KB
testcase_08 AC 67 ms
39,572 KB
testcase_09 AC 54 ms
35,084 KB
testcase_10 AC 57 ms
36,364 KB
testcase_11 AC 66 ms
39,648 KB
testcase_12 AC 55 ms
35,468 KB
testcase_13 AC 55 ms
35,344 KB
testcase_14 AC 64 ms
38,960 KB
testcase_15 AC 59 ms
37,392 KB
testcase_16 AC 49 ms
33,492 KB
testcase_17 AC 41 ms
31,148 KB
testcase_18 AC 49 ms
33,676 KB
testcase_19 AC 53 ms
34,832 KB
testcase_20 AC 52 ms
34,568 KB
testcase_21 AC 55 ms
35,600 KB
testcase_22 AC 41 ms
30,944 KB
testcase_23 AC 40 ms
31,228 KB
testcase_24 AC 65 ms
39,692 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

fscanf(STDIN, "%d %d", $n, $d);  // 5 2
$ds = explode(" ", fgets(STDIN));  // [1, 2, 3, 1000]

$ds_ = [0];
foreach ($ds as $val) {
  $ds_[] = end($ds_) + $val;
} // [0, 1, 3, 6, 1006]

for ($i=1; $i < count($ds_); $i++) {
  if($ds_[$i] - $ds_[$i - 1] < $d) {
    $ds_[$i] = $ds_[$i - 1] + $d;
  }
}

echo implode(" ", $ds_), "\n";
0