結果

問題 No.46 はじめのn歩
ユーザー ieneko18ieneko18
提出日時 2016-11-28 02:54:57
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 67 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 31,100 KB
実行使用メモリ 31,216 KB
最終ジャッジ日時 2024-05-05 14:29:01
合計ジャッジ時間 1,039 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
31,216 KB
testcase_01 AC 39 ms
30,868 KB
testcase_02 WA -
testcase_03 AC 38 ms
31,020 KB
testcase_04 WA -
testcase_05 AC 35 ms
30,944 KB
testcase_06 WA -
testcase_07 AC 34 ms
31,004 KB
testcase_08 AC 33 ms
30,912 KB
testcase_09 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
list($a,$b)=explode(" ",fgets(STDIN));
echo ($a+$b-1)/$a;
?>
0