結果

問題 No.1229 ラグビーの得点パターン
ユーザー naniwazunaniwazu
提出日時 2020-09-18 23:58:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 165 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 60,468 KB
最終ジャッジ日時 2024-06-22 11:37:06
合計ジャッジ時間 2,199 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
58,500 KB
testcase_01 AC 36 ms
59,092 KB
testcase_02 AC 36 ms
58,684 KB
testcase_03 AC 37 ms
59,152 KB
testcase_04 AC 37 ms
59,024 KB
testcase_05 AC 37 ms
58,760 KB
testcase_06 AC 37 ms
58,896 KB
testcase_07 AC 37 ms
60,324 KB
testcase_08 AC 37 ms
59,852 KB
testcase_09 AC 37 ms
58,572 KB
testcase_10 AC 36 ms
59,916 KB
testcase_11 AC 36 ms
59,308 KB
testcase_12 AC 36 ms
58,712 KB
testcase_13 AC 38 ms
59,776 KB
testcase_14 AC 37 ms
59,044 KB
testcase_15 AC 37 ms
59,908 KB
testcase_16 AC 37 ms
59,524 KB
testcase_17 AC 39 ms
59,248 KB
testcase_18 AC 39 ms
59,436 KB
testcase_19 AC 39 ms
59,108 KB
testcase_20 AC 39 ms
58,704 KB
testcase_21 AC 39 ms
60,092 KB
testcase_22 AC 37 ms
58,588 KB
testcase_23 AC 36 ms
58,960 KB
testcase_24 AC 37 ms
58,492 KB
testcase_25 AC 39 ms
59,772 KB
testcase_26 AC 35 ms
58,972 KB
testcase_27 AC 36 ms
60,468 KB
testcase_28 AC 37 ms
59,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
ans = 0
for i in range(40):
    for j in range(30):
        for k in range(20):
            if i*3+j*5+k*7 == N:
                ans += 1
print(ans)
0