結果

問題 No.687 E869120 and Constructing Array 1
ユーザー ayaaya
提出日時 2019-08-02 14:10:07
言語 PHP
(8.3.4)
結果
AC  
実行時間 43 ms / 1,000 ms
コード長 270 bytes
コンパイル時間 68 ms
コンパイル使用メモリ 31,088 KB
実行使用メモリ 30,732 KB
最終ジャッジ日時 2024-07-05 08:05:45
合計ジャッジ時間 1,044 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
30,428 KB
testcase_01 AC 40 ms
30,572 KB
testcase_02 AC 43 ms
30,632 KB
testcase_03 AC 42 ms
30,652 KB
testcase_04 AC 40 ms
30,548 KB
testcase_05 AC 39 ms
30,592 KB
testcase_06 AC 39 ms
30,732 KB
testcase_07 AC 39 ms
30,580 KB
testcase_08 AC 40 ms
30,496 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$array=array();
$ans;
$exit=false;
for($i=1;$i<=10;$i++){
  array_push($array,$i);
}
$N=(int)trim(fgets(STDIN));
while($exit===false){
$random=rand(1,10);
$exit=array_search($N-$random,$array);
  if($exit!==false){
  $ans=$random." ".($exit+1);
  echo $ans;
  }
}
0