結果

問題 No.1097 Remainder Operation
ユーザー tailstails
提出日時 2020-07-08 09:25:09
言語 Perl
(5.38.2)
結果
TLE  
実行時間 -
コード長 197 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 5,888 KB
実行使用メモリ 146,256 KB
最終ジャッジ日時 2024-10-03 04:45:50
合計ジャッジ時間 7,206 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
11,264 KB
testcase_01 AC 8 ms
6,016 KB
testcase_02 AC 11 ms
6,144 KB
testcase_03 AC 10 ms
6,016 KB
testcase_04 AC 11 ms
6,016 KB
testcase_05 AC 11 ms
6,016 KB
testcase_06 AC 10 ms
6,016 KB
testcase_07 AC 319 ms
21,248 KB
testcase_08 AC 325 ms
21,248 KB
testcase_09 AC 318 ms
21,248 KB
testcase_10 AC 318 ms
21,248 KB
testcase_11 AC 318 ms
21,248 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

$n=<>;
@0=glob<>;

for$i(0..38){
	for$j(0..$n-1){
		${$i+1}[$j]=$$i[$j]+$$i[($j+$$i[$j])%$n];
	}
}

for(1..<>){
	$k=<>;
	$a=0;
	for(0..39){
		if($k&1<<$_){
			$a+=$$_[$a%$n];
		}
	}
	print$a,$/;
}
0