結果

問題 No.339 何人が回答したのか
ユーザー happy-beanshappy-beans
提出日時 2017-03-17 19:44:41
言語 PHP
(8.3.4)
結果
AC  
実行時間 40 ms / 1,000 ms
コード長 478 bytes
コンパイル時間 889 ms
コンパイル使用メモリ 30,968 KB
実行使用メモリ 31,416 KB
最終ジャッジ日時 2024-07-04 13:43:43
合計ジャッジ時間 4,855 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
31,268 KB
testcase_01 AC 38 ms
30,984 KB
testcase_02 AC 37 ms
30,908 KB
testcase_03 AC 37 ms
31,268 KB
testcase_04 AC 37 ms
31,140 KB
testcase_05 AC 36 ms
31,160 KB
testcase_06 AC 37 ms
31,360 KB
testcase_07 AC 35 ms
31,104 KB
testcase_08 AC 35 ms
31,176 KB
testcase_09 AC 35 ms
30,872 KB
testcase_10 AC 36 ms
31,196 KB
testcase_11 AC 36 ms
31,252 KB
testcase_12 AC 36 ms
31,136 KB
testcase_13 AC 38 ms
31,160 KB
testcase_14 AC 35 ms
30,928 KB
testcase_15 AC 36 ms
31,100 KB
testcase_16 AC 34 ms
30,860 KB
testcase_17 AC 38 ms
31,260 KB
testcase_18 AC 38 ms
30,928 KB
testcase_19 AC 36 ms
30,856 KB
testcase_20 AC 37 ms
31,344 KB
testcase_21 AC 35 ms
31,088 KB
testcase_22 AC 35 ms
31,188 KB
testcase_23 AC 35 ms
30,928 KB
testcase_24 AC 36 ms
31,072 KB
testcase_25 AC 35 ms
31,084 KB
testcase_26 AC 36 ms
31,112 KB
testcase_27 AC 36 ms
31,132 KB
testcase_28 AC 39 ms
30,988 KB
testcase_29 AC 37 ms
31,416 KB
testcase_30 AC 38 ms
31,136 KB
testcase_31 AC 36 ms
30,856 KB
testcase_32 AC 35 ms
31,348 KB
testcase_33 AC 39 ms
31,160 KB
testcase_34 AC 37 ms
31,060 KB
testcase_35 AC 37 ms
31,168 KB
testcase_36 AC 35 ms
30,780 KB
testcase_37 AC 34 ms
31,020 KB
testcase_38 AC 35 ms
31,016 KB
testcase_39 AC 34 ms
30,992 KB
testcase_40 AC 34 ms
31,288 KB
testcase_41 AC 33 ms
31,012 KB
testcase_42 AC 35 ms
30,908 KB
testcase_43 AC 37 ms
31,292 KB
testcase_44 AC 35 ms
31,332 KB
testcase_45 AC 37 ms
30,996 KB
testcase_46 AC 40 ms
31,320 KB
testcase_47 AC 35 ms
31,064 KB
testcase_48 AC 36 ms
30,952 KB
testcase_49 AC 36 ms
30,928 KB
testcase_50 AC 35 ms
31,196 KB
testcase_51 AC 34 ms
30,884 KB
testcase_52 AC 36 ms
30,896 KB
testcase_53 AC 39 ms
31,164 KB
testcase_54 AC 39 ms
30,996 KB
testcase_55 AC 37 ms
31,120 KB
testcase_56 AC 38 ms
31,216 KB
testcase_57 AC 37 ms
31,116 KB
testcase_58 AC 35 ms
30,784 KB
testcase_59 AC 35 ms
30,868 KB
testcase_60 AC 34 ms
30,836 KB
testcase_61 AC 36 ms
30,844 KB
testcase_62 AC 37 ms
30,984 KB
testcase_63 AC 37 ms
31,164 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
// No. 339

$n = trim(fgets(STDIN));
$ar = array();

$i = 0;
while ($i < $n) {
  $arg = trim(fgets(STDIN));
  array_push($ar, $arg);
  $gcd = ($i == 0) ? $arg : getGCD($gcd, $arg);
  $i++;
}

$count = 0;
foreach ($ar as $key => $value) {
  $count += ($value / $gcd);
}

echo $count.PHP_EOL;

// ---------------------- //
function getGCD($a, $b)
{
  if ($a < $b) {
    return getGCD($b, $a);
  }
  else {
    $m = $a % $b;
    return ($m == 0) ? $b : getGCD($b, $m);
  }
}
0