結果

問題 No.485 方程式のお勉強
ユーザー ねずねず
提出日時 2018-03-04 12:59:48
言語 PHP
(8.3.4)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 100 bytes
コンパイル時間 816 ms
コンパイル使用メモリ 31,232 KB
実行使用メモリ 31,540 KB
最終ジャッジ日時 2024-07-07 05:46:16
合計ジャッジ時間 2,264 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
31,184 KB
testcase_01 AC 36 ms
31,252 KB
testcase_02 AC 33 ms
31,060 KB
testcase_03 AC 34 ms
31,096 KB
testcase_04 AC 34 ms
31,024 KB
testcase_05 AC 34 ms
31,196 KB
testcase_06 AC 36 ms
31,540 KB
testcase_07 AC 35 ms
31,336 KB
testcase_08 AC 32 ms
31,316 KB
testcase_09 AC 32 ms
31,176 KB
testcase_10 AC 32 ms
31,340 KB
testcase_11 AC 32 ms
31,140 KB
testcase_12 AC 33 ms
31,252 KB
testcase_13 AC 34 ms
30,920 KB
testcase_14 AC 35 ms
31,372 KB
testcase_15 AC 34 ms
31,256 KB
testcase_16 AC 33 ms
31,292 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
list($a, $b) = explode(' ', trim(fgets(STDIN)));
echo abs($b) % abs($a) == 0 ? $b / $a : "NO";
0