結果

問題 No.352 カード並べ
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-11 01:44:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 313 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 58,384 KB
最終ジャッジ日時 2024-11-21 08:40:20
合計ジャッジ時間 1,020 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,532 KB
testcase_01 AC 35 ms
52,264 KB
testcase_02 AC 36 ms
52,772 KB
testcase_03 AC 36 ms
53,696 KB
testcase_04 AC 36 ms
53,632 KB
testcase_05 AC 35 ms
52,128 KB
testcase_06 AC 35 ms
53,212 KB
testcase_07 AC 36 ms
54,124 KB
testcase_08 AC 39 ms
58,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N = int(input())
    if N == 1:
        return 1.0
    if N == 2:
        return 2.0
    res = 2.0
    for n in range(3, N + 1):
        res += 2 / n
        for a in range(1, n):
            for b in range(a + 1, n):
                res += 2 * a * b / (n * (n - 1))
    return res


print(main())
0