結果

問題 No.388 階段 (1)
ユーザー takeya_okinotakeya_okino
提出日時 2017-07-15 16:52:43
言語 PHP
(8.3.4)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 110 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 30,916 KB
実行使用メモリ 31,344 KB
最終ジャッジ日時 2024-04-16 21:48:36
合計ジャッジ時間 1,404 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
30,912 KB
testcase_01 AC 42 ms
31,136 KB
testcase_02 AC 43 ms
31,280 KB
testcase_03 AC 41 ms
31,260 KB
testcase_04 AC 42 ms
31,092 KB
testcase_05 AC 41 ms
31,132 KB
testcase_06 AC 42 ms
31,076 KB
testcase_07 AC 42 ms
30,976 KB
testcase_08 AC 41 ms
30,840 KB
testcase_09 AC 42 ms
31,228 KB
testcase_10 AC 42 ms
31,264 KB
testcase_11 AC 41 ms
31,104 KB
testcase_12 AC 41 ms
31,344 KB
testcase_13 AC 41 ms
31,060 KB
testcase_14 AC 41 ms
31,016 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$array = explode(" ", trim(fgets(STDIN)));
$S = $array[0];
$F = $array[1];
print(1 + intdiv($S, $F));
?>
0