結果

問題 No.480 合計
ユーザー happy-beanshappy-beans
提出日時 2017-03-14 06:19:25
言語 PHP
(8.3.4)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 98 bytes
コンパイル時間 4,346 ms
コンパイル使用メモリ 31,892 KB
実行使用メモリ 31,300 KB
最終ジャッジ日時 2024-12-14 09:20:07
合計ジャッジ時間 2,289 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
31,140 KB
testcase_01 AC 45 ms
30,832 KB
testcase_02 AC 44 ms
31,088 KB
testcase_03 AC 41 ms
31,300 KB
testcase_04 AC 41 ms
31,148 KB
testcase_05 AC 41 ms
31,192 KB
testcase_06 AC 42 ms
30,968 KB
testcase_07 AC 40 ms
31,060 KB
testcase_08 AC 39 ms
31,184 KB
testcase_09 AC 43 ms
31,240 KB
testcase_10 AC 42 ms
31,052 KB
testcase_11 AC 41 ms
31,196 KB
testcase_12 AC 40 ms
31,132 KB
testcase_13 AC 39 ms
31,076 KB
testcase_14 AC 39 ms
31,228 KB
testcase_15 AC 43 ms
30,964 KB
testcase_16 AC 41 ms
31,208 KB
testcase_17 AC 42 ms
31,064 KB
testcase_18 AC 39 ms
31,256 KB
testcase_19 AC 39 ms
31,136 KB
testcase_20 AC 42 ms
31,292 KB
testcase_21 AC 39 ms
31,080 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

// No.480
$args = trim(fgets(STDIN));

echo $args * ($args + 1) / 2;
echo PHP_EOL;
return;
0