結果
問題 | No.278 連続する整数の和(2) |
ユーザー | kk |
提出日時 | 2015-09-19 16:38:03 |
言語 | PHP (8.3.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 497 bytes |
コンパイル時間 | 137 ms |
コンパイル使用メモリ | 30,728 KB |
実行使用メモリ | 31,388 KB |
最終ジャッジ日時 | 2024-07-19 08:00:19 |
合計ジャッジ時間 | 2,494 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
31,196 KB |
testcase_01 | WA | - |
testcase_02 | AC | 212 ms
31,140 KB |
testcase_03 | AC | 41 ms
31,208 KB |
testcase_04 | AC | 41 ms
30,916 KB |
testcase_05 | AC | 42 ms
30,964 KB |
testcase_06 | AC | 47 ms
30,888 KB |
testcase_07 | AC | 42 ms
30,620 KB |
testcase_08 | WA | - |
testcase_09 | AC | 192 ms
30,908 KB |
testcase_10 | AC | 242 ms
31,232 KB |
testcase_11 | AC | 71 ms
30,744 KB |
testcase_12 | WA | - |
testcase_13 | AC | 65 ms
30,992 KB |
testcase_14 | AC | 138 ms
30,596 KB |
testcase_15 | AC | 62 ms
30,796 KB |
testcase_16 | AC | 58 ms
30,808 KB |
testcase_17 | AC | 200 ms
30,752 KB |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php function divisor_max($input){ //------------- //約数最大値取得 //------------- $max = 0; if (($input%2)==0){ $max = $input / 2; }else{ $max = $input; } return $max; } $input = trim(fgets(STDIN)); //約数最大値 $max = divisor_max($input); $flg = 0; $q = 0; $i = 1; while ($max > ($i * $i)){ if ($max == ($i * $i)){ $q += $i; $i++; }else if (($max%$i)==0){ $q += ($max / $i) + $i; $i++; }else{ $i++; } } echo $q . "\n";