結果

問題 No.333 門松列を数え上げ
ユーザー papinianuspapinianus
提出日時 2016-07-27 09:05:05
言語 PHP
(8.3.4)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 206 bytes
コンパイル時間 3,082 ms
コンパイル使用メモリ 30,320 KB
実行使用メモリ 31,040 KB
最終ジャッジ日時 2024-11-06 17:54:27
合計ジャッジ時間 4,002 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
30,904 KB
testcase_01 AC 42 ms
30,928 KB
testcase_02 AC 41 ms
30,836 KB
testcase_03 AC 41 ms
30,960 KB
testcase_04 AC 41 ms
30,964 KB
testcase_05 AC 41 ms
30,908 KB
testcase_06 AC 40 ms
31,000 KB
testcase_07 AC 40 ms
30,680 KB
testcase_08 AC 42 ms
31,040 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
list($left, $center) = explode(" ",trim(fgets(STDIN)));
$max = "2000000000";

if($left > $center) {
    $right = $max - $center - 1;
} else {
    $right = $center - 1 - 1;
}
echo $right;
echo PHP_EOL;
0