結果

問題 No.687 E869120 and Constructing Array 1
ユーザー mondomondo
提出日時 2019-08-05 14:37:07
言語 PHP
(8.3.4)
結果
AC  
実行時間 36 ms / 1,000 ms
コード長 214 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 31,188 KB
実行使用メモリ 31,436 KB
最終ジャッジ日時 2024-07-18 13:32:44
合計ジャッジ時間 1,157 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
31,028 KB
testcase_01 AC 35 ms
30,876 KB
testcase_02 AC 36 ms
31,280 KB
testcase_03 AC 33 ms
31,436 KB
testcase_04 AC 34 ms
31,180 KB
testcase_05 AC 35 ms
31,424 KB
testcase_06 AC 34 ms
30,840 KB
testcase_07 AC 35 ms
31,408 KB
testcase_08 AC 34 ms
31,320 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$number = trim(fgets(STDIN));
$array = [1,2,3,4,5,6,7,8,9,10];
$a = 0;
$b = 0;
foreach ($array as $value){
    if($number > $value){
        $a = $number - $value;
        $b = $value;
    }
}
echo $a." ".$b;
0