結果

問題 No.1229 ラグビーの得点パターン
ユーザー tamatotamato
提出日時 2020-09-18 21:21:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 336 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,656 KB
実行使用メモリ 61,528 KB
最終ジャッジ日時 2024-06-22 08:21:51
合計ジャッジ時間 2,478 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
61,340 KB
testcase_01 AC 46 ms
60,228 KB
testcase_02 AC 46 ms
60,572 KB
testcase_03 AC 46 ms
60,040 KB
testcase_04 AC 46 ms
60,312 KB
testcase_05 AC 45 ms
60,656 KB
testcase_06 AC 45 ms
60,156 KB
testcase_07 AC 46 ms
59,992 KB
testcase_08 AC 45 ms
60,276 KB
testcase_09 AC 44 ms
60,188 KB
testcase_10 AC 45 ms
61,528 KB
testcase_11 AC 45 ms
59,856 KB
testcase_12 AC 45 ms
60,848 KB
testcase_13 AC 45 ms
61,160 KB
testcase_14 AC 45 ms
61,044 KB
testcase_15 AC 45 ms
61,068 KB
testcase_16 AC 44 ms
60,100 KB
testcase_17 AC 45 ms
60,184 KB
testcase_18 AC 45 ms
59,788 KB
testcase_19 AC 45 ms
61,008 KB
testcase_20 AC 45 ms
60,060 KB
testcase_21 AC 47 ms
60,648 KB
testcase_22 AC 46 ms
60,532 KB
testcase_23 AC 47 ms
60,492 KB
testcase_24 AC 46 ms
59,888 KB
testcase_25 AC 46 ms
60,344 KB
testcase_26 AC 47 ms
60,104 KB
testcase_27 AC 46 ms
60,048 KB
testcase_28 AC 46 ms
61,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    N = int(input())
    ans = 0
    for x in range(100):
        for y in range(x+1):
            for z in range(100):
                if 5*x + 2*y + 3*z == N:
                    ans += 1
    print(ans)


if __name__ == '__main__':
    main()
0