結果

問題 No.388 階段 (1)
ユーザー mahnamahna
提出日時 2020-05-09 15:56:08
言語 PHP
(8.3.4)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 95 bytes
コンパイル時間 2,870 ms
コンパイル使用メモリ 31,888 KB
実行使用メモリ 31,000 KB
最終ジャッジ日時 2024-07-05 20:22:46
合計ジャッジ時間 4,188 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
30,752 KB
testcase_01 AC 39 ms
30,880 KB
testcase_02 AC 40 ms
30,768 KB
testcase_03 AC 39 ms
30,776 KB
testcase_04 AC 40 ms
30,920 KB
testcase_05 AC 40 ms
30,672 KB
testcase_06 AC 42 ms
31,000 KB
testcase_07 AC 40 ms
30,840 KB
testcase_08 AC 41 ms
30,476 KB
testcase_09 AC 40 ms
30,876 KB
testcase_10 AC 40 ms
30,772 KB
testcase_11 AC 40 ms
30,656 KB
testcase_12 AC 39 ms
30,628 KB
testcase_13 AC 39 ms
30,844 KB
testcase_14 AC 39 ms
30,848 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
    fscanf(STDIN,"%d %d",$a,$b);
    
    $ans = floor($a / $b) + 1;
    print($ans);
?>
0