結果

問題 No.71 そろばん
ユーザー mizzsigmizzsig
提出日時 2017-02-04 18:16:39
言語 PHP
(843.2)
結果
AC  
実行時間 47 ms / 5,000 ms
コード長 112 bytes
コンパイル時間 2,506 ms
コンパイル使用メモリ 30,636 KB
実行使用メモリ 31,088 KB
最終ジャッジ日時 2024-12-24 06:17:20
合計ジャッジ時間 4,528 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
30,936 KB
testcase_01 AC 45 ms
30,668 KB
testcase_02 AC 44 ms
30,716 KB
testcase_03 AC 45 ms
30,708 KB
testcase_04 AC 45 ms
30,944 KB
testcase_05 AC 44 ms
30,928 KB
testcase_06 AC 43 ms
30,708 KB
testcase_07 AC 45 ms
30,580 KB
testcase_08 AC 45 ms
31,048 KB
testcase_09 AC 44 ms
30,676 KB
testcase_10 AC 44 ms
31,088 KB
testcase_11 AC 44 ms
30,808 KB
testcase_12 AC 44 ms
30,876 KB
testcase_13 AC 45 ms
30,784 KB
testcase_14 AC 43 ms
30,948 KB
testcase_15 AC 43 ms
30,476 KB
testcase_16 AC 47 ms
30,768 KB
testcase_17 AC 46 ms
30,628 KB
testcase_18 AC 44 ms
30,724 KB
testcase_19 AC 44 ms
30,804 KB
testcase_20 AC 45 ms
30,584 KB
testcase_21 AC 45 ms
30,544 KB
testcase_22 AC 45 ms
30,788 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
	$n = trim(fgets(STDIN));
	$n2 = intval($n / 2);
	$ans = $n2 * ($n - $n2 + 1) + ($n - $n2);
	echo $ans;
?>
0