結果

問題 No.313 π
ユーザー LeonardoneLeonardone
提出日時 2015-12-07 01:17:30
言語 PHP
(8.3.4)
結果
AC  
実行時間 56 ms / 5,000 ms
コード長 547 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 30,692 KB
実行使用メモリ 31,376 KB
最終ジャッジ日時 2024-09-14 17:44:55
合計ジャッジ時間 3,177 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
31,248 KB
testcase_01 AC 54 ms
31,120 KB
testcase_02 AC 55 ms
31,164 KB
testcase_03 AC 55 ms
31,376 KB
testcase_04 AC 55 ms
31,112 KB
testcase_05 AC 56 ms
31,120 KB
testcase_06 AC 55 ms
31,248 KB
testcase_07 AC 56 ms
31,244 KB
testcase_08 AC 55 ms
31,120 KB
testcase_09 AC 55 ms
31,116 KB
testcase_10 AC 54 ms
30,912 KB
testcase_11 AC 55 ms
31,116 KB
testcase_12 AC 54 ms
31,360 KB
testcase_13 AC 56 ms
31,116 KB
testcase_14 AC 55 ms
31,116 KB
testcase_15 AC 55 ms
31,060 KB
testcase_16 AC 54 ms
31,200 KB
testcase_17 AC 55 ms
31,116 KB
testcase_18 AC 55 ms
31,248 KB
testcase_19 AC 55 ms
31,160 KB
testcase_20 AC 55 ms
31,372 KB
testcase_21 AC 55 ms
31,240 KB
testcase_22 AC 56 ms
31,244 KB
testcase_23 AC 54 ms
31,244 KB
testcase_24 AC 55 ms
30,952 KB
testcase_25 AC 55 ms
31,120 KB
testcase_26 AC 55 ms
31,116 KB
testcase_27 AC 55 ms
31,116 KB
testcase_28 AC 54 ms
31,300 KB
testcase_29 AC 55 ms
31,116 KB
testcase_30 AC 55 ms
31,248 KB
testcase_31 AC 55 ms
31,364 KB
testcase_32 AC 56 ms
31,116 KB
testcase_33 AC 56 ms
31,020 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
/* yukicoder My Practice
 * author: Leonardone @ NEETSDKASU
 */

// 解説読後
// http://yukicoder.me/problems/686/editorial


$f = fgets(STDIN);

$c = strlen($f);

$a = [0,0,0,0,0, 0,0,0,0,0];

for ($i = 0; $i < $c; $i++) {
	if ($f[$i] === '.') {
		continue;
	}
	$a[intval($f[$i])]++;
}


$b = array(20105, 20063, 19892, 20011, 19874, 20199, 19898, 20163, 19956, 19841);

$w = -1;
$c = -1;

for ($i = 0; $i < 10; $i++) {
	$d = $b[$i] - $a[$i];
	if ($d < 0) {
		$w = $i;
	} else if ($d > 0) {
		$c = $i;
	}
	
}

echo "{$w} {$c}", PHP_EOL;
0