結果

問題 No.1986 Yummy
ユーザー SKSK
提出日時 2022-12-20 17:32:12
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 66 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 32,144 KB
実行使用メモリ 32,400 KB
最終ジャッジ日時 2024-11-18 01:56:50
合計ジャッジ時間 2,048 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 32 ms
30,896 KB
testcase_02 AC 31 ms
30,856 KB
testcase_03 WA -
testcase_04 AC 31 ms
30,488 KB
testcase_05 AC 32 ms
30,660 KB
testcase_06 AC 31 ms
30,864 KB
testcase_07 AC 31 ms
31,128 KB
testcase_08 AC 31 ms
30,608 KB
testcase_09 WA -
testcase_10 AC 31 ms
31,064 KB
testcase_11 AC 31 ms
30,836 KB
testcase_12 AC 31 ms
30,964 KB
testcase_13 WA -
testcase_14 AC 32 ms
30,692 KB
testcase_15 WA -
testcase_16 AC 32 ms
30,804 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 31 ms
30,704 KB
testcase_20 AC 31 ms
30,676 KB
testcase_21 AC 31 ms
30,936 KB
testcase_22 AC 32 ms
30,840 KB
testcase_23 AC 31 ms
30,724 KB
testcase_24 AC 31 ms
31,012 KB
testcase_25 AC 32 ms
30,812 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

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

$ans = floor($n/2);

echo $ans;
?>
0