結果

問題 No.377 背景パターン
ユーザー cielciel
提出日時 2021-06-15 00:21:08
言語 Ruby
(3.3.0)
結果
AC  
実行時間 3,509 ms / 5,000 ms
コード長 344 bytes
コンパイル時間 70 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 98,816 KB
最終ジャッジ日時 2024-06-07 09:52:28
合計ジャッジ時間 10,394 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
12,416 KB
testcase_01 AC 113 ms
12,416 KB
testcase_02 AC 107 ms
12,672 KB
testcase_03 AC 117 ms
12,416 KB
testcase_04 AC 103 ms
12,160 KB
testcase_05 AC 104 ms
12,416 KB
testcase_06 AC 105 ms
12,416 KB
testcase_07 AC 105 ms
12,288 KB
testcase_08 AC 104 ms
12,416 KB
testcase_09 AC 104 ms
12,288 KB
testcase_10 AC 104 ms
12,288 KB
testcase_11 AC 104 ms
12,544 KB
testcase_12 AC 104 ms
12,160 KB
testcase_13 AC 116 ms
12,800 KB
testcase_14 AC 112 ms
12,672 KB
testcase_15 AC 104 ms
12,288 KB
testcase_16 AC 3,477 ms
97,792 KB
testcase_17 AC 3,509 ms
98,816 KB
testcase_18 AC 108 ms
12,672 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require'prime'
def x(a,d=0,n=1,t=1,&b)d==a.size ? b.(n,t):(0..a[d][1]).map{|i|x(a,d+1,n*a[d][0]**i,i>0?t*~-a[d][0]*a[d][0]**~-i:t,&b)}end
q=->x,y{z=1;(y%2>0&&z=z*x%M;x=x*x%M;y/=2)while y>0;z}
C={}
r=M=10**9+7
H,W,K=gets.split.map &:to_i
x(H.prime_division){|a,c|x(W.prime_division){|b,d|r=(r+c*d*C[k=W*H/a.lcm(b)]||=q[K,k])%M}}
p r*q[W*H,M-2]%M
0