結果
問題 | No.58 イカサマなサイコロ |
ユーザー | cologne |
提出日時 | 2022-01-24 21:28:19 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 45 ms / 5,000 ms |
コード長 | 774 bytes |
コンパイル時間 | 409 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 60,544 KB |
最終ジャッジ日時 | 2024-05-08 18:01:46 |
合計ジャッジ時間 | 1,548 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
51,968 KB |
testcase_01 | AC | 45 ms
60,544 KB |
testcase_02 | AC | 38 ms
52,480 KB |
testcase_03 | AC | 38 ms
52,480 KB |
testcase_04 | AC | 38 ms
53,120 KB |
testcase_05 | AC | 41 ms
58,240 KB |
testcase_06 | AC | 45 ms
60,544 KB |
testcase_07 | AC | 39 ms
52,096 KB |
testcase_08 | AC | 38 ms
52,480 KB |
testcase_09 | AC | 44 ms
58,624 KB |
ソースコード
import sys def input(): return sys.stdin.readline().rstrip() def main(): def normal(a): b = [0]*(len(a)+6) for i in range(len(a)): for j in range(1, 7): b[i+j] += a[i] / 6 return b def cheat(a): b = [0]*(len(a)+6) for i in range(len(a)): for j in range(4, 7): b[i+j] += a[i] / 3 return b N = int(input()) K = int(input()) x = [1] for i in range(N): x = normal(x) y = [1] for i in range(K): y = cheat(y) for i in range(N-K): y = normal(y) ans = 0 for i in range(len(x)): for j in range(i+1, len(y)): ans += x[i]*y[j] print(ans) if __name__ == '__main__': main()