結果

問題 No.352 カード並べ
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-11 01:44:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 313 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 57,976 KB
最終ジャッジ日時 2024-05-01 06:32:37
合計ジャッジ時間 1,235 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,940 KB
testcase_01 AC 40 ms
52,032 KB
testcase_02 AC 39 ms
52,560 KB
testcase_03 AC 39 ms
52,612 KB
testcase_04 AC 39 ms
53,496 KB
testcase_05 AC 38 ms
53,340 KB
testcase_06 AC 38 ms
52,944 KB
testcase_07 AC 38 ms
52,284 KB
testcase_08 AC 41 ms
57,976 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