結果

問題 No.1097 Remainder Operation
ユーザー cao bicao bi
提出日時 2022-02-28 15:39:19
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,603 ms / 2,000 ms
コード長 363 bytes
コンパイル時間 425 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 50,048 KB
最終ジャッジ日時 2024-07-06 18:08:00
合計ジャッジ時間 21,633 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
43,392 KB
testcase_01 AC 103 ms
43,264 KB
testcase_02 AC 106 ms
43,392 KB
testcase_03 AC 105 ms
43,136 KB
testcase_04 AC 105 ms
43,392 KB
testcase_05 AC 104 ms
43,264 KB
testcase_06 AC 107 ms
43,392 KB
testcase_07 AC 252 ms
43,776 KB
testcase_08 AC 254 ms
43,904 KB
testcase_09 AC 249 ms
43,776 KB
testcase_10 AC 247 ms
43,776 KB
testcase_11 AC 254 ms
43,904 KB
testcase_12 AC 1,542 ms
49,920 KB
testcase_13 AC 1,527 ms
49,920 KB
testcase_14 AC 1,535 ms
49,920 KB
testcase_15 AC 1,541 ms
50,048 KB
testcase_16 AC 1,510 ms
49,920 KB
testcase_17 AC 1,386 ms
50,048 KB
testcase_18 AC 1,388 ms
49,792 KB
testcase_19 AC 1,488 ms
49,920 KB
testcase_20 AC 1,479 ms
49,792 KB
testcase_21 AC 1,586 ms
49,792 KB
testcase_22 AC 1,603 ms
49,664 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i
a = gets.split.map(&:to_i)
dp = Array.new(40) { Array.new(100005, 0) }

for i in 0...n
	dp[0][i] = a[i]
end


for i in 0...39
	for j in 0...n
		dp[i + 1][j] = dp[i][j] + dp[i][(j + dp[i][j]) % n]
	end
end

q = gets.to_i
while q > 0
	k = gets.to_i
	ans = 0
	for i in 0...40
		if (k[i] == 1)
			ans += dp[i][ans % n]
		end
	end
	puts ans
	q -= 1
end

0