結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー Iruyan_ZakIruyan_Zak
提出日時 2020-09-30 18:52:49
言語 PHP
(8.3.4)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 419 bytes
コンパイル時間 75 ms
コンパイル使用メモリ 30,872 KB
実行使用メモリ 39,820 KB
最終ジャッジ日時 2024-07-06 06:39:26
合計ジャッジ時間 2,952 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
31,000 KB
testcase_01 AC 40 ms
30,932 KB
testcase_02 AC 58 ms
36,752 KB
testcase_03 AC 47 ms
31,628 KB
testcase_04 AC 60 ms
37,468 KB
testcase_05 AC 42 ms
31,244 KB
testcase_06 AC 64 ms
39,136 KB
testcase_07 AC 53 ms
34,832 KB
testcase_08 AC 68 ms
39,572 KB
testcase_09 AC 54 ms
35,212 KB
testcase_10 AC 59 ms
36,364 KB
testcase_11 AC 66 ms
39,648 KB
testcase_12 AC 55 ms
35,596 KB
testcase_13 AC 55 ms
35,472 KB
testcase_14 AC 65 ms
39,084 KB
testcase_15 AC 59 ms
37,008 KB
testcase_16 AC 50 ms
33,420 KB
testcase_17 AC 41 ms
31,040 KB
testcase_18 AC 49 ms
33,676 KB
testcase_19 AC 53 ms
34,832 KB
testcase_20 AC 52 ms
34,576 KB
testcase_21 AC 55 ms
35,600 KB
testcase_22 AC 41 ms
31,224 KB
testcase_23 AC 40 ms
31,040 KB
testcase_24 AC 63 ms
39,820 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