結果

問題 No.377 背景パターン
ユーザー 0w10w1
提出日時 2017-04-24 23:13:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 4,533 ms / 5,000 ms
コード長 894 bytes
コンパイル時間 506 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 91,852 KB
最終ジャッジ日時 2024-09-13 12:12:32
合計ジャッジ時間 11,310 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
64,372 KB
testcase_01 AC 62 ms
67,056 KB
testcase_02 AC 58 ms
64,728 KB
testcase_03 AC 56 ms
62,756 KB
testcase_04 AC 46 ms
56,016 KB
testcase_05 AC 45 ms
55,856 KB
testcase_06 AC 47 ms
56,420 KB
testcase_07 AC 46 ms
55,852 KB
testcase_08 AC 47 ms
55,632 KB
testcase_09 AC 48 ms
56,072 KB
testcase_10 AC 48 ms
56,092 KB
testcase_11 AC 46 ms
55,244 KB
testcase_12 AC 46 ms
55,680 KB
testcase_13 AC 197 ms
78,564 KB
testcase_14 AC 191 ms
78,496 KB
testcase_15 AC 52 ms
62,304 KB
testcase_16 AC 4,533 ms
91,852 KB
testcase_17 AC 4,106 ms
85,824 KB
testcase_18 AC 56 ms
63,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import reduce

MOD = int( 1e9 ) + 7

H, W, K = map( int, input().split() )

def gcd( a, b ):
  if b == 0: return a
  return gcd( b, a % b )

def is_prime( n ):
  return 1 < n and all( n % i for i in range( 2, int( n ** 0.5 ) + 1 ) )

def factors( n ):
  return [ i for i in range( 1, int( n ** 0.5 ) + 1 ) if n % i == 0 ] + [ n // i for i in range( 1, int( n ** 0.5 ) + 1 ) if i * i != n and n % i == 0 ]
hf, wf = factors( H ), factors( W )

hp, wp = [ v for v in hf if is_prime( v ) ], [ v for v in wf if is_prime( v ) ]
def phi( x ):
  return reduce( lambda a, b: a // b * ( b - 1 ), [ x ] + [ p for p in ( hp if H % x == 0 else wp ) if x % p == 0 ] )

ans = 0
for a in hf:
  for b in wf:
    ans += pow( K, H // a * W // b * gcd( a, b ) % ( MOD - 1 ), MOD ) * phi( a ) * phi( b ) % MOD
    if ans >= MOD: ans -= MOD

ans = ans * pow( H * W, MOD - 2, MOD ) % MOD

print( ans )
0