結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
59,996 KB
testcase_01 AC 44 ms
60,372 KB
testcase_02 AC 45 ms
60,760 KB
testcase_03 AC 45 ms
61,696 KB
testcase_04 AC 45 ms
60,516 KB
testcase_05 AC 44 ms
59,844 KB
testcase_06 AC 45 ms
59,184 KB
testcase_07 AC 48 ms
59,368 KB
testcase_08 AC 45 ms
59,904 KB
testcase_09 AC 45 ms
59,244 KB
testcase_10 AC 45 ms
59,632 KB
testcase_11 AC 45 ms
60,792 KB
testcase_12 AC 45 ms
59,500 KB
testcase_13 AC 44 ms
59,976 KB
testcase_14 AC 46 ms
60,244 KB
testcase_15 AC 46 ms
60,488 KB
testcase_16 AC 46 ms
59,972 KB
testcase_17 AC 45 ms
60,140 KB
testcase_18 AC 45 ms
59,864 KB
testcase_19 AC 47 ms
61,376 KB
testcase_20 AC 49 ms
61,236 KB
testcase_21 AC 46 ms
59,432 KB
testcase_22 AC 47 ms
61,032 KB
testcase_23 AC 47 ms
61,376 KB
testcase_24 AC 46 ms
59,600 KB
testcase_25 AC 47 ms
59,940 KB
testcase_26 AC 50 ms
59,932 KB
testcase_27 AC 47 ms
60,940 KB
testcase_28 AC 46 ms
60,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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