結果

問題 No.58 イカサマなサイコロ
ユーザー tobusakanatobusakana
提出日時 2022-11-05 15:27:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 4,942 ms / 5,000 ms
コード長 444 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 78,464 KB
最終ジャッジ日時 2024-07-19 08:28:56
合計ジャッジ時間 55,122 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4,942 ms
77,952 KB
testcase_01 AC 4,940 ms
78,336 KB
testcase_02 AC 4,938 ms
77,824 KB
testcase_03 AC 4,940 ms
77,440 KB
testcase_04 AC 4,942 ms
78,064 KB
testcase_05 AC 4,938 ms
78,208 KB
testcase_06 AC 4,939 ms
77,952 KB
testcase_07 AC 4,939 ms
77,824 KB
testcase_08 AC 4,937 ms
78,464 KB
testcase_09 AC 4,935 ms
77,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
K = int(input())

import time
start = time.time()

edited = [4,5,6]
normal = [1,2,3,4,5,6]

import random
def play(X):
  point = 0
  L = len(X) - 1
  for i in range(K):
    point += X[random.randint(0, L)]
  for i in range(K, N):
    point += normal[random.randint(0, 5)]
  return point
  
win = 0
played = 0
while time.time() - start < 4.9:
  played += 1
  if play(edited) > play(normal):
    win += 1
    
print(win / played)
0