結果

問題 No.212 素数サイコロと合成数サイコロ (2)
ユーザー tanimani364tanimani364
提出日時 2021-03-29 17:55:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 5,000 ms
コード長 337 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 67,072 KB
最終ジャッジ日時 2024-11-29 10:09:42
合計ジャッジ時間 1,567 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
67,072 KB
testcase_01 AC 63 ms
65,752 KB
testcase_02 AC 62 ms
66,360 KB
testcase_03 AC 63 ms
66,088 KB
testcase_04 AC 63 ms
66,644 KB
testcase_05 AC 62 ms
67,068 KB
testcase_06 AC 68 ms
66,872 KB
testcase_07 AC 63 ms
66,172 KB
testcase_08 AC 63 ms
66,848 KB
testcase_09 AC 64 ms
66,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
#coding:utf-8

import math
import string
import random
import heapq
from sys import stdin
# import numpy as np
# from matplotlib import pyplot as plt
	
def main():
	read=stdin.readline

	#edit here!
	p,c=map(int,read().split())
	ans=(pow(41,p)*pow(49,c))/pow(6,p+c)
	print(ans)

if __name__ == '__main__':
	main()
0