結果
問題 | No.35 タイパー高橋 |
ユーザー | beatdjam |
提出日時 | 2016-09-30 10:51:21 |
言語 | PHP (8.3.4) |
結果 |
AC
|
実行時間 | 36 ms / 5,000 ms |
コード長 | 724 bytes |
コンパイル時間 | 176 ms |
コンパイル使用メモリ | 32,144 KB |
実行使用メモリ | 31,104 KB |
最終ジャッジ日時 | 2024-05-01 08:11:47 |
合計ジャッジ時間 | 896 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
31,080 KB |
testcase_01 | AC | 36 ms
30,840 KB |
testcase_02 | AC | 35 ms
31,088 KB |
testcase_03 | AC | 34 ms
31,104 KB |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php $input_lines = trim(fgets(STDIN)); $input_lines = str_replace(array("\r\n","\r","\n"), "", $input_lines); do { $tmpStr[] = $input_lines; $input_lines = trim(fgets(STDIN)); $input_lines = str_replace(array("\r\n","\r","\n"), "", $input_lines); } while ($input_lines !== ""); array_shift($tmpStr); $speed = 1000 / 12; $count = 0; $failCount = 0; foreach($tmpStr as $value){ $s = explode(" ", $value); $tmp = $s[0]; $val = floor($tmp / $speed) > strlen($s[1])? strlen($s[1]) : floor($tmp / $speed); $count += $val; $failCount += strlen($s[1]) - $val; } echo $count . " " . $failCount;