結果

問題 No.1229 ラグビーの得点パターン
ユーザー brthyyjpbrthyyjp
提出日時 2020-09-18 23:09:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 178 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 81,904 KB
実行使用メモリ 61,680 KB
最終ジャッジ日時 2024-06-22 10:17:59
合計ジャッジ時間 2,396 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,432 KB
testcase_01 AC 38 ms
52,572 KB
testcase_02 AC 42 ms
59,244 KB
testcase_03 AC 48 ms
61,168 KB
testcase_04 AC 37 ms
52,872 KB
testcase_05 AC 38 ms
53,304 KB
testcase_06 AC 37 ms
53,164 KB
testcase_07 AC 38 ms
52,016 KB
testcase_08 AC 39 ms
52,076 KB
testcase_09 AC 38 ms
53,256 KB
testcase_10 AC 42 ms
59,056 KB
testcase_11 AC 44 ms
60,020 KB
testcase_12 AC 44 ms
60,236 KB
testcase_13 AC 46 ms
60,888 KB
testcase_14 AC 44 ms
59,432 KB
testcase_15 AC 43 ms
59,844 KB
testcase_16 AC 45 ms
59,704 KB
testcase_17 AC 45 ms
59,988 KB
testcase_18 AC 43 ms
59,412 KB
testcase_19 AC 45 ms
60,372 KB
testcase_20 AC 45 ms
60,920 KB
testcase_21 AC 46 ms
61,428 KB
testcase_22 AC 46 ms
60,280 KB
testcase_23 AC 47 ms
61,104 KB
testcase_24 AC 47 ms
61,680 KB
testcase_25 AC 47 ms
59,812 KB
testcase_26 AC 46 ms
59,836 KB
testcase_27 AC 48 ms
60,888 KB
testcase_28 AC 47 ms
60,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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