結果

問題 No.1893 Cycle
ユーザー SKSK
提出日時 2022-12-20 09:48:59
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 226 bytes
コンパイル時間 2,350 ms
コンパイル使用メモリ 30,672 KB
実行使用メモリ 31,228 KB
最終ジャッジ日時 2024-11-18 01:44:26
合計ジャッジ時間 2,062 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
30,736 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 43 ms
30,976 KB
testcase_04 AC 42 ms
30,484 KB
testcase_05 AC 42 ms
30,676 KB
testcase_06 AC 41 ms
30,948 KB
testcase_07 AC 41 ms
30,940 KB
testcase_08 AC 42 ms
30,960 KB
testcase_09 AC 41 ms
30,948 KB
testcase_10 WA -
testcase_11 AC 43 ms
31,040 KB
testcase_12 WA -
testcase_13 AC 42 ms
30,896 KB
testcase_14 AC 42 ms
31,016 KB
testcase_15 WA -
testcase_16 AC 42 ms
30,980 KB
testcase_17 AC 42 ms
30,700 KB
testcase_18 WA -
testcase_19 AC 42 ms
30,992 KB
testcase_20 WA -
testcase_21 AC 42 ms
30,912 KB
testcase_22 WA -
testcase_23 AC 43 ms
30,976 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$a = explode(" ",trim(fgets(STDIN)));

sort($a);

if ($a[1]-$a[0] == 4 && $a[1] >= 8) {
    echo $a[0]+4;
}elseif ($a[1]-$a[0] == 4 && $a[1] <= 7) {
    echo $a[1]+4;
}elseif ($a[1]-$a[0] == 8) {
    echo $a[0]+4;
}


?>
0