結果
問題 | No.390 最長の数列 |
ユーザー | kagikakko_kari |
提出日時 | 2016-07-09 16:07:00 |
言語 | PHP (8.3.4) |
結果 |
TLE
|
実行時間 | - |
コード長 | 319 bytes |
コンパイル時間 | 2,296 ms |
コンパイル使用メモリ | 31,632 KB |
実行使用メモリ | 49,044 KB |
最終ジャッジ日時 | 2024-10-13 09:34:48 |
合計ジャッジ時間 | 8,788 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
31,112 KB |
testcase_01 | AC | 37 ms
30,948 KB |
testcase_02 | AC | 37 ms
31,068 KB |
testcase_03 | AC | 38 ms
30,932 KB |
testcase_04 | AC | 37 ms
30,956 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php $N = trim(fgets(STDIN)); $x = explode(" ",trim(fgets(STDIN))); rsort($x); $ans = array(); $ans = array_pad($ans,$N,0); for($i = 0;$i < $N;$i++){ for($j = $i;$j < $N;$j++){ if($x[$i] % $x[$j] == 0){ $ans[$i] ++; } } } $ans = array_count_values($ans); echo count($ans) ."\n"; ?>