結果

問題 No.373 かけ算と割った余り
ユーザー takoshi186takoshi186
提出日時 2016-08-01 15:25:09
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 185 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 31,048 KB
実行使用メモリ 31,648 KB
最終ジャッジ日時 2024-04-24 13:30:11
合計ジャッジ時間 800 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

<?php
    // $text = "1 2 3 4";
    // list( $a, $b, $c, $d ) = explode(" ", $text);

    list( $a, $b, $c, $d ) = explode(" ", trim(fgets(STDIN)));

    echo ($a * $b * $c) % $d."\n";
0