結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
31,276 KB
testcase_01 AC 37 ms
30,720 KB
testcase_02 WA -
testcase_03 AC 37 ms
31,028 KB
testcase_04 WA -
testcase_05 AC 37 ms
31,020 KB
testcase_06 WA -
testcase_07 AC 37 ms
30,952 KB
testcase_08 AC 38 ms
31,220 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