結果

問題 No.987 N×Mマス計算(基本)
ユーザー takutakutakutaku
提出日時 2021-06-28 08:58:36
言語 PHP
(8.3.4)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 445 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 32,404 KB
実行使用メモリ 31,436 KB
最終ジャッジ日時 2024-06-25 12:00:27
合計ジャッジ時間 2,377 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
31,248 KB
testcase_01 AC 44 ms
31,116 KB
testcase_02 AC 51 ms
31,280 KB
testcase_03 AC 45 ms
31,400 KB
testcase_04 AC 49 ms
31,280 KB
testcase_05 AC 49 ms
31,208 KB
testcase_06 AC 51 ms
31,196 KB
testcase_07 AC 47 ms
30,956 KB
testcase_08 AC 44 ms
31,188 KB
testcase_09 AC 43 ms
30,964 KB
testcase_10 AC 43 ms
31,164 KB
testcase_11 AC 50 ms
30,872 KB
testcase_12 AC 53 ms
31,312 KB
testcase_13 AC 46 ms
31,152 KB
testcase_14 AC 42 ms
30,956 KB
testcase_15 AC 46 ms
30,992 KB
testcase_16 AC 53 ms
31,436 KB
testcase_17 AC 50 ms
31,236 KB
testcase_18 AC 52 ms
30,988 KB
testcase_19 AC 58 ms
31,188 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
    
    $n = explode(" ",trim(fgets(STDIN)));
    $b = explode(" ",trim(fgets(STDIN)));
    $op = $b[0];
    
    for($i = 0;$i < $n[0];$i++) {
        $a = trim(fgets(STDIN));
        
        for($k = 1; $k <= $n[1]; $k++) {
            if($op == "+") {
                echo ((int)$a + (int)$b[$k])." ";
            }else {
                echo ((int)$a * (int)$b[$k])." ";
            }
        }
        
        echo "\n";

    }
?>
0