結果

問題 No.388 階段 (1)
ユーザー ChihiroAbeChihiroAbe
提出日時 2017-09-02 22:57:42
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 77 bytes
コンパイル時間 77 ms
コンパイル使用メモリ 30,864 KB
実行使用メモリ 31,140 KB
最終ジャッジ日時 2024-04-24 10:57:30
合計ジャッジ時間 1,359 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 40 ms
30,968 KB
testcase_02 AC 40 ms
30,804 KB
testcase_03 AC 40 ms
30,924 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 40 ms
30,896 KB
testcase_08 AC 39 ms
30,780 KB
testcase_09 AC 40 ms
30,992 KB
testcase_10 WA -
testcase_11 AC 42 ms
30,924 KB
testcase_12 AC 41 ms
31,104 KB
testcase_13 AC 40 ms
31,140 KB
testcase_14 AC 41 ms
31,060 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
list($a, $b) = explode(' ', trim(fgets(STDIN)));
echo ceil($a / $b);
?>
0