結果

問題 No.1986 Yummy
ユーザー SKSK
提出日時 2022-12-20 17:32:12
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 66 bytes
コンパイル時間 70 ms
コンパイル使用メモリ 31,156 KB
実行使用メモリ 31,348 KB
最終ジャッジ日時 2024-04-29 02:52:21
合計ジャッジ時間 1,954 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 40 ms
31,076 KB
testcase_02 AC 43 ms
30,912 KB
testcase_03 WA -
testcase_04 AC 42 ms
30,916 KB
testcase_05 AC 43 ms
30,916 KB
testcase_06 AC 42 ms
30,712 KB
testcase_07 AC 41 ms
31,020 KB
testcase_08 AC 41 ms
30,784 KB
testcase_09 WA -
testcase_10 AC 42 ms
31,060 KB
testcase_11 AC 46 ms
30,720 KB
testcase_12 AC 41 ms
30,804 KB
testcase_13 WA -
testcase_14 AC 40 ms
31,004 KB
testcase_15 WA -
testcase_16 AC 41 ms
30,856 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 40 ms
30,676 KB
testcase_20 AC 39 ms
30,844 KB
testcase_21 AC 39 ms
31,084 KB
testcase_22 AC 39 ms
30,816 KB
testcase_23 AC 40 ms
30,856 KB
testcase_24 AC 40 ms
30,696 KB
testcase_25 AC 41 ms
30,936 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$n = trim(fgets(STDIN));

$ans = floor($n/2);

echo $ans;
?>
0