結果

問題 No.1229 ラグビーの得点パターン
ユーザー neterukunneterukun
提出日時 2020-09-18 21:21:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 201 bytes
コンパイル時間 794 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 62,128 KB
最終ジャッジ日時 2024-06-22 08:23:02
合計ジャッジ時間 2,453 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,040 KB
testcase_01 AC 32 ms
52,344 KB
testcase_02 AC 37 ms
60,268 KB
testcase_03 AC 43 ms
61,812 KB
testcase_04 AC 32 ms
52,492 KB
testcase_05 AC 33 ms
52,248 KB
testcase_06 AC 32 ms
52,416 KB
testcase_07 AC 33 ms
52,396 KB
testcase_08 AC 33 ms
52,204 KB
testcase_09 AC 35 ms
53,012 KB
testcase_10 AC 40 ms
59,980 KB
testcase_11 AC 40 ms
59,604 KB
testcase_12 AC 39 ms
60,552 KB
testcase_13 AC 41 ms
60,500 KB
testcase_14 AC 39 ms
60,348 KB
testcase_15 AC 41 ms
60,452 KB
testcase_16 AC 41 ms
62,128 KB
testcase_17 AC 41 ms
60,140 KB
testcase_18 AC 41 ms
60,916 KB
testcase_19 AC 40 ms
60,404 KB
testcase_20 AC 41 ms
60,508 KB
testcase_21 AC 44 ms
60,896 KB
testcase_22 AC 43 ms
60,924 KB
testcase_23 AC 43 ms
61,204 KB
testcase_24 AC 42 ms
60,880 KB
testcase_25 AC 42 ms
60,928 KB
testcase_26 AC 42 ms
60,716 KB
testcase_27 AC 44 ms
60,256 KB
testcase_28 AC 43 ms
61,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ans = 0
for i in range(n + 1):
    for j in range(0, n + 1):
        for k in range(0, n + 1):
            if j <= i and 5 * i + 2 * j + 3 * k == n:
                ans += 1
print(ans)
0