結果

問題 No.1229 ラグビーの得点パターン
ユーザー YU HiroseYU Hirose
提出日時 2024-06-18 16:49:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 222 bytes
コンパイル時間 510 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 60,816 KB
最終ジャッジ日時 2024-06-18 16:49:51
合計ジャッジ時間 3,389 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,428 KB
testcase_01 AC 37 ms
52,352 KB
testcase_02 AC 37 ms
51,816 KB
testcase_03 AC 88 ms
60,816 KB
testcase_04 AC 36 ms
53,224 KB
testcase_05 AC 37 ms
52,032 KB
testcase_06 AC 37 ms
51,496 KB
testcase_07 AC 37 ms
52,232 KB
testcase_08 AC 37 ms
52,744 KB
testcase_09 AC 37 ms
52,996 KB
testcase_10 AC 37 ms
52,128 KB
testcase_11 AC 37 ms
53,204 KB
testcase_12 AC 37 ms
52,840 KB
testcase_13 AC 38 ms
52,224 KB
testcase_14 AC 38 ms
51,884 KB
testcase_15 AC 41 ms
58,116 KB
testcase_16 AC 42 ms
60,288 KB
testcase_17 AC 42 ms
58,968 KB
testcase_18 AC 40 ms
57,472 KB
testcase_19 AC 40 ms
58,328 KB
testcase_20 AC 40 ms
57,668 KB
testcase_21 AC 40 ms
58,908 KB
testcase_22 AC 41 ms
58,860 KB
testcase_23 AC 41 ms
58,112 KB
testcase_24 AC 42 ms
58,724 KB
testcase_25 AC 41 ms
59,752 KB
testcase_26 AC 41 ms
59,536 KB
testcase_27 AC 41 ms
58,660 KB
testcase_28 AC 41 ms
59,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
cnt = 0
for t in range(n//5+1):
    for g in range(n//2+1):
        if g > t:
            continue
        for pg in range(n//3+1):
            if n == 5*t + 2*g + 3*pg:
                cnt += 1
print(cnt)
0