結果

問題 No.481 1から10
ユーザー papinianuspapinianus
提出日時 2017-02-25 09:14:18
言語 PHP
(8.3.4)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 125 bytes
コンパイル時間 3,012 ms
コンパイル使用メモリ 30,856 KB
実行使用メモリ 30,984 KB
最終ジャッジ日時 2024-06-11 14:52:38
合計ジャッジ時間 3,465 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
30,832 KB
testcase_01 AC 36 ms
30,852 KB
testcase_02 AC 45 ms
30,760 KB
testcase_03 AC 36 ms
30,688 KB
testcase_04 AC 36 ms
30,956 KB
testcase_05 AC 37 ms
30,956 KB
testcase_06 AC 36 ms
30,984 KB
testcase_07 AC 36 ms
30,872 KB
testcase_08 AC 36 ms
30,764 KB
testcase_09 AC 37 ms
30,764 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$nums = explode(" ", trim(fgets(STDIN)));
$diff = array_diff(range(1, 10), $nums);
echo array_pop($diff);
echo PHP_EOL;
0