結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 42 ms
31,372 KB
testcase_02 AC 43 ms
30,796 KB
testcase_03 AC 42 ms
31,092 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 42 ms
31,148 KB
testcase_08 AC 43 ms
31,252 KB
testcase_09 AC 43 ms
31,040 KB
testcase_10 WA -
testcase_11 AC 43 ms
31,024 KB
testcase_12 AC 43 ms
31,144 KB
testcase_13 AC 42 ms
31,008 KB
testcase_14 AC 42 ms
31,152 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

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