結果
問題 | No.809 かけ算 |
ユーザー | aya |
提出日時 | 2019-08-05 12:06:51 |
言語 | PHP (8.3.4) |
結果 |
TLE
|
実行時間 | - |
コード長 | 221 bytes |
コンパイル時間 | 162 ms |
コンパイル使用メモリ | 32,404 KB |
実行使用メモリ | 39,472 KB |
最終ジャッジ日時 | 2024-07-18 13:28:26 |
合計ジャッジ時間 | 3,923 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
39,472 KB |
testcase_01 | AC | 46 ms
32,400 KB |
testcase_02 | AC | 41 ms
32,404 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php $input=(int)trim(fgets(STDIN)); $ans; $array=array(); for($i=1;$i<($input/2)+1;$i++){ if($input%$i==0){ $x=$input/$i; array_push($array,"$i $x"); } } $ans=$array[rand(0,count($array)-1)]; echo $ans;