結果
問題 | No.278 連続する整数の和(2) |
ユーザー | kk |
提出日時 | 2015-09-19 10:48:07 |
言語 | PHP (8.3.4) |
結果 |
TLE
|
実行時間 | - |
コード長 | 253 bytes |
コンパイル時間 | 81 ms |
コンパイル使用メモリ | 30,796 KB |
実行使用メモリ | 36,484 KB |
最終ジャッジ日時 | 2024-07-19 07:53:34 |
合計ジャッジ時間 | 3,675 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
36,484 KB |
testcase_01 | AC | 39 ms
30,904 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php $input = trim(fgets(STDIN)); //割り切れる数の最大値 $max = 1; if (($input%2)==0){ $max = $input / 2; }else{ $max = $input; } $mp = 0; for ($i=1; $i<=$max; $i++){ if ($max%$i==0){ $mp += $i; } } echo $mp . "\n";