結果

問題 No.46 はじめのn歩
ユーザー michirumichiru
提出日時 2019-10-22 21:34:55
言語 PHP
(8.3.4)
結果
AC  
実行時間 41 ms / 5,000 ms
コード長 127 bytes
コンパイル時間 1,759 ms
コンパイル使用メモリ 31,888 KB
実行使用メモリ 31,180 KB
最終ジャッジ日時 2024-07-04 22:01:41
合計ジャッジ時間 1,081 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
31,132 KB
testcase_01 AC 39 ms
30,752 KB
testcase_02 AC 40 ms
31,180 KB
testcase_03 AC 40 ms
31,044 KB
testcase_04 AC 40 ms
30,976 KB
testcase_05 AC 39 ms
31,172 KB
testcase_06 AC 40 ms
30,748 KB
testcase_07 AC 39 ms
30,924 KB
testcase_08 AC 41 ms
31,036 KB
testcase_09 AC 40 ms
31,148 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
// Your code here!
list($a, $b) = explode(" ", trim(fgets(STDIN)));

$ans = 0;
$ans = $b / $a;

echo ceil($ans)."\n";

?>
0