結果

問題 No.1791 Repeat Multiplication
ユーザー ramdosramdos
提出日時 2021-11-27 23:54:01
言語 Ruby
(3.3.0)
結果
AC  
実行時間 2,592 ms / 3,000 ms
コード長 226 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 24,192 KB
最終ジャッジ日時 2024-09-15 14:56:20
合計ジャッジ時間 51,438 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
12,032 KB
testcase_01 AC 84 ms
12,032 KB
testcase_02 AC 89 ms
12,288 KB
testcase_03 AC 85 ms
12,160 KB
testcase_04 AC 87 ms
12,160 KB
testcase_05 AC 87 ms
12,160 KB
testcase_06 AC 88 ms
12,160 KB
testcase_07 AC 84 ms
12,032 KB
testcase_08 AC 428 ms
13,056 KB
testcase_09 AC 385 ms
12,800 KB
testcase_10 AC 369 ms
12,928 KB
testcase_11 AC 344 ms
12,672 KB
testcase_12 AC 237 ms
12,416 KB
testcase_13 AC 2,337 ms
23,040 KB
testcase_14 AC 2,294 ms
23,296 KB
testcase_15 AC 1,577 ms
20,352 KB
testcase_16 AC 1,640 ms
20,096 KB
testcase_17 AC 2,506 ms
23,808 KB
testcase_18 AC 1,879 ms
21,376 KB
testcase_19 AC 2,273 ms
22,912 KB
testcase_20 AC 1,659 ms
20,736 KB
testcase_21 AC 2,319 ms
22,912 KB
testcase_22 AC 2,463 ms
23,808 KB
testcase_23 AC 1,840 ms
20,992 KB
testcase_24 AC 2,395 ms
23,296 KB
testcase_25 AC 2,132 ms
22,528 KB
testcase_26 AC 2,431 ms
23,424 KB
testcase_27 AC 1,859 ms
21,504 KB
testcase_28 AC 2,424 ms
24,064 KB
testcase_29 AC 2,410 ms
24,064 KB
testcase_30 AC 2,592 ms
24,192 KB
testcase_31 AC 86 ms
12,160 KB
testcase_32 AC 2,484 ms
24,064 KB
testcase_33 AC 2,414 ms
23,936 KB
testcase_34 AC 2,514 ms
24,064 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n, q=gets.to_s.split.map{ |e| e.to_i }
v=Array.new(n+1, 0)
v[1]=1
for i in 1..n+1
  c=i*2
  while c<=n
    v[c]+=v[i]
    c+=i
  end
end
q.times do
  t=gets.to_s.to_i
  f=0
  for j in 0..n/t
    f+=v[j]
  end
  puts v[t]*f
end
0