結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
31,080 KB
testcase_01 AC 46 ms
30,876 KB
testcase_02 AC 42 ms
30,940 KB
testcase_03 AC 42 ms
30,836 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