結果

問題 No.388 階段 (1)
ユーザー sam_kinosam_kino
提出日時 2016-07-20 12:32:03
言語 PHP
(8.3.4)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 128 bytes
コンパイル時間 1,362 ms
コンパイル使用メモリ 31,136 KB
実行使用メモリ 31,324 KB
最終ジャッジ日時 2024-04-23 17:02:27
合計ジャッジ時間 1,239 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
31,064 KB
testcase_01 AC 40 ms
31,128 KB
testcase_02 AC 38 ms
31,204 KB
testcase_03 AC 42 ms
31,000 KB
testcase_04 AC 38 ms
31,072 KB
testcase_05 AC 35 ms
31,324 KB
testcase_06 AC 35 ms
31,264 KB
testcase_07 AC 36 ms
31,172 KB
testcase_08 AC 36 ms
31,200 KB
testcase_09 AC 36 ms
31,148 KB
testcase_10 AC 37 ms
31,024 KB
testcase_11 AC 36 ms
30,796 KB
testcase_12 AC 35 ms
31,008 KB
testcase_13 AC 35 ms
30,936 KB
testcase_14 AC 36 ms
31,236 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
// Here your code !

$line=trim(fgets(STDIN));
list($a,$b)=explode(" ",$line);

$ans=floor($a/$b)+1;

echo $ans.PHP_EOL;

0