結果

問題 No.35 タイパー高橋
ユーザー ねずねず
提出日時 2018-01-29 11:19:59
言語 PHP
(843.2)
結果
AC  
実行時間 44 ms / 5,000 ms
コード長 232 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 30,932 KB
実行使用メモリ 31,272 KB
最終ジャッジ日時 2024-12-29 18:00:57
合計ジャッジ時間 985 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
31,272 KB
testcase_01 AC 42 ms
30,892 KB
testcase_02 AC 43 ms
31,104 KB
testcase_03 AC 43 ms
30,664 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$n = trim(fgets(STDIN));
$ac = $sum = 0;
for ($i = 0; $i < $n; $i++) {
	list($t, $s) = explode(' ', trim(fgets(STDIN)));
	$ac += min(strlen($s), intval(12 * $t / 1000));
	$sum += strlen($s);
}
echo $ac . ' ' . ($sum - $ac);
?>
0