結果
問題 | No.687 E869120 and Constructing Array 1 |
ユーザー | aya |
提出日時 | 2019-08-02 14:04:15 |
言語 | PHP (8.3.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 217 bytes |
コンパイル時間 | 65 ms |
コンパイル使用メモリ | 30,952 KB |
実行使用メモリ | 31,336 KB |
最終ジャッジ日時 | 2024-07-05 08:05:40 |
合計ジャッジ時間 | 1,283 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
30,788 KB |
testcase_01 | AC | 36 ms
30,792 KB |
testcase_02 | AC | 36 ms
30,896 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 36 ms
30,792 KB |
testcase_06 | AC | 36 ms
31,232 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php $array=array(); $ans; $exit=false; for($i=2;$i<=20;$i++){ array_push($array,$i); } $N=(int)trim(fgets(STDIN)); $random=rand(1,10); $exit=array_search($N-$random,$array); $ans=$random." ".($exit+2); echo $ans;