結果

問題 No.434 占い
ユーザー tailstails
提出日時 2016-10-14 23:28:20
言語 Perl
(5.38.2)
結果
TLE  
実行時間 -
コード長 194 bytes
コンパイル時間 997 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 34,560 KB
最終ジャッジ日時 2024-11-22 06:22:29
合計ジャッジ時間 61,358 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
18,048 KB
testcase_01 AC 55 ms
18,176 KB
testcase_02 AC 56 ms
18,176 KB
testcase_03 AC 66 ms
26,368 KB
testcase_04 AC 67 ms
18,048 KB
testcase_05 AC 66 ms
34,304 KB
testcase_06 AC 189 ms
18,048 KB
testcase_07 AC 183 ms
18,176 KB
testcase_08 TLE -
testcase_09 AC 1,643 ms
18,048 KB
testcase_10 AC 1,432 ms
25,344 KB
testcase_11 AC 1,339 ms
18,048 KB
testcase_12 AC 1,402 ms
25,344 KB
testcase_13 TLE -
testcase_14 AC 1,641 ms
18,304 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 66 ms
34,560 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

use bigint;
$n=<>;
for(1..$n){
	$_=<>;
	chomp;
	$l=length;
	$s=0;
	$t=0;
	$i=1;
	$m=1;
	for(/./g){
		$t|=$_;
		$s=($s+$_*$m)%9;
		$m=$m*($l-$i)/$i;
		++$i;
	}
	$s=9 if $s==0&&$t;
	print$s,$/;
}
0