結果

問題 No.73 helloworld
ユーザー ntudantuda
提出日時 2024-09-16 20:08:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 5,000 ms
コード長 555 bytes
コンパイル時間 402 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 52,480 KB
最終ジャッジ日時 2024-09-16 20:09:00
合計ジャッジ時間 1,759 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 41 ms
52,352 KB
testcase_03 AC 40 ms
52,224 KB
testcase_04 AC 45 ms
52,096 KB
testcase_05 AC 42 ms
51,840 KB
testcase_06 AC 39 ms
52,352 KB
testcase_07 AC 40 ms
52,224 KB
testcase_08 AC 39 ms
52,096 KB
testcase_09 AC 38 ms
52,224 KB
testcase_10 AC 39 ms
52,480 KB
testcase_11 AC 40 ms
52,480 KB
testcase_12 AC 42 ms
51,968 KB
testcase_13 AC 39 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import comb

C = []
dic = {3: 1, 4: 1, 7: 1, 11: 3, 14: 2, 17: 1, 22: 1}
ans = 1
for i in range(26):
    x = int(input())
    if i in dic:
        if x < dic[i]:
            print(0)
            exit()
        if i == 11:
            t = 1
            for k in range(x - 2):
                t = max(t, comb(k + 2, 2) * (x - k - 2))
            ans *= t
        elif i == 14:
            t = 1
            for k in range(x - 1):
                t = max(t, (k + 1) * (x - k - 1))
            ans *= t
        else:
            ans *= x
print(ans)
0