結果

問題 No.480 合計
ユーザー michirumichiru
提出日時 2019-10-16 21:08:41
言語 PHP
(8.3.4)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 287 bytes
コンパイル時間 507 ms
コンパイル使用メモリ 32,144 KB
実行使用メモリ 31,360 KB
最終ジャッジ日時 2024-06-23 03:33:05
合計ジャッジ時間 2,094 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
31,072 KB
testcase_01 AC 40 ms
30,844 KB
testcase_02 AC 40 ms
31,016 KB
testcase_03 AC 41 ms
30,960 KB
testcase_04 AC 39 ms
31,180 KB
testcase_05 AC 40 ms
30,968 KB
testcase_06 AC 39 ms
31,148 KB
testcase_07 AC 41 ms
31,224 KB
testcase_08 AC 40 ms
30,980 KB
testcase_09 AC 41 ms
31,188 KB
testcase_10 AC 40 ms
31,360 KB
testcase_11 AC 42 ms
31,292 KB
testcase_12 AC 41 ms
31,100 KB
testcase_13 AC 40 ms
30,904 KB
testcase_14 AC 40 ms
31,320 KB
testcase_15 AC 41 ms
30,988 KB
testcase_16 AC 40 ms
31,156 KB
testcase_17 AC 40 ms
30,900 KB
testcase_18 AC 40 ms
30,996 KB
testcase_19 AC 39 ms
31,100 KB
testcase_20 AC 39 ms
31,224 KB
testcase_21 AC 40 ms
31,204 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
    //一行分を読み込む, 空白で分割してそれぞれ$aと$bの変数に入れる
    list($n) = explode(" ", trim(fgets(STDIN)));
    
    $total = 0;
    for ($i=1; $i <= $n; $i++) {
        $total += $i;
    }
    //標準出力に書き出す。
    print "$total";
0