結果
問題 | No.498 ワープクリスタル (給料日編) |
ユーザー | maspy |
提出日時 | 2020-03-05 15:48:17 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 687 bytes |
コンパイル時間 | 587 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 79,264 KB |
最終ジャッジ日時 | 2024-10-14 01:17:26 |
合計ジャッジ時間 | 10,929 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
52,224 KB |
testcase_01 | AC | 42 ms
52,096 KB |
testcase_02 | AC | 41 ms
51,968 KB |
testcase_03 | AC | 41 ms
52,096 KB |
testcase_04 | RE | - |
testcase_05 | AC | 42 ms
52,864 KB |
testcase_06 | WA | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | AC | 735 ms
76,588 KB |
testcase_10 | AC | 41 ms
51,968 KB |
testcase_11 | AC | 180 ms
76,452 KB |
testcase_12 | AC | 42 ms
52,480 KB |
testcase_13 | WA | - |
testcase_14 | AC | 50 ms
59,520 KB |
testcase_15 | AC | 88 ms
75,904 KB |
testcase_16 | AC | 53 ms
60,416 KB |
testcase_17 | AC | 88 ms
75,904 KB |
testcase_18 | WA | - |
testcase_19 | AC | 749 ms
76,968 KB |
testcase_20 | WA | - |
testcase_21 | AC | 758 ms
77,100 KB |
testcase_22 | AC | 751 ms
77,220 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
ソースコード
#!/usr/bin/env python3 # %% import sys read = sys.stdin.buffer.read readline = sys.stdin.buffer.readline readlines = sys.stdin.buffer.readlines import itertools # %% Gx, Gy, K = map(int, readline().split()) m = map(int, read().split()) XYN = list(zip(m, m, m)) # %% fact = [1] * 50 for n in range(1, 50): fact[n] = n * fact[n - 1] # %% X, Y, N = zip(*XYN) rngs = [range(n + 1) for n in N] it = itertools.product(*rngs) answer = 0 for p in it: x = sum(dx * cnt for dx, cnt in zip(X, p)) y = sum(dy * cnt for dy, cnt in zip(Y, p)) if x != Gx or y != Gy: continue x = fact[sum(p)] for cnt in p: x //= fact[cnt] answer += x # %% print(answer)