結果
問題 | No.365 ジェンガソート |
ユーザー | papinianus |
提出日時 | 2016-09-01 13:36:22 |
言語 | PHP (8.3.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 319 bytes |
コンパイル時間 | 4,849 ms |
コンパイル使用メモリ | 31,884 KB |
実行使用メモリ | 79,020 KB |
最終ジャッジ日時 | 2024-11-15 16:40:36 |
合計ジャッジ時間 | 54,563 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
36,416 KB |
testcase_01 | AC | 40 ms
70,912 KB |
testcase_02 | AC | 39 ms
38,036 KB |
testcase_03 | AC | 40 ms
73,384 KB |
testcase_04 | AC | 39 ms
36,524 KB |
testcase_05 | AC | 39 ms
72,552 KB |
testcase_06 | AC | 41 ms
36,516 KB |
testcase_07 | AC | 40 ms
70,592 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 42 ms
38,284 KB |
testcase_15 | AC | 41 ms
67,832 KB |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | AC | 83 ms
38,660 KB |
testcase_19 | TLE | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | WA | - |
testcase_26 | TLE | - |
testcase_27 | WA | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | TLE | - |
testcase_34 | WA | - |
testcase_35 | TLE | - |
testcase_36 | TLE | - |
testcase_37 | AC | 145 ms
42,608 KB |
testcase_38 | TLE | - |
testcase_39 | TLE | - |
testcase_40 | TLE | - |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php $n = trim(fgets(STDIN)); $nums = explode(" ",trim(fgets(STDIN))); $numstr = implode("", $nums); sort($nums); $act = 0; $tail = $n; while(($num = array_pop($nums)) !== false) { $pos = strpos($numstr, $num); $act += ($tail - $pos - 1); if($pos == 0) {break;} $tail = $pos; } echo $act; echo PHP_EOL;