結果

問題 No.687 E869120 and Constructing Array 1
ユーザー dyechidyechi
提出日時 2019-03-28 17:17:03
言語 PHP
(8.3.4)
結果
AC  
実行時間 39 ms / 1,000 ms
コード長 196 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 30,852 KB
実行使用メモリ 31,404 KB
最終ジャッジ日時 2024-10-13 07:00:12
合計ジャッジ時間 1,172 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

<?php
$s = trim(fgets(STDIN));

for ($i=1; $i<=10; $i++) {
    for ($j=1; $j<=10; $j++) {
        if ($s == $i + $j) {
            echo $i." ".$j.PHP_EOL;
            break 2;
        }
    }
}
?>
0