結果

問題 No.1229 ラグビーの得点パターン
ユーザー xRS43BofaUEZ5gcxRS43BofaUEZ5gc
提出日時 2021-03-03 09:38:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 727 bytes
コンパイル時間 3,682 ms
コンパイル使用メモリ 74,520 KB
実行使用メモリ 41,580 KB
最終ジャッジ日時 2024-10-03 03:08:02
合計ジャッジ時間 8,344 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,368 KB
testcase_01 AC 134 ms
41,196 KB
testcase_02 AC 132 ms
41,144 KB
testcase_03 AC 132 ms
41,508 KB
testcase_04 AC 131 ms
41,268 KB
testcase_05 AC 131 ms
41,460 KB
testcase_06 AC 133 ms
41,376 KB
testcase_07 AC 132 ms
41,304 KB
testcase_08 AC 132 ms
41,504 KB
testcase_09 AC 135 ms
41,104 KB
testcase_10 AC 136 ms
41,580 KB
testcase_11 AC 134 ms
41,452 KB
testcase_12 AC 133 ms
41,472 KB
testcase_13 AC 134 ms
41,296 KB
testcase_14 AC 133 ms
41,316 KB
testcase_15 AC 134 ms
40,856 KB
testcase_16 AC 132 ms
41,208 KB
testcase_17 AC 131 ms
41,248 KB
testcase_18 AC 130 ms
41,404 KB
testcase_19 AC 132 ms
41,540 KB
testcase_20 AC 135 ms
41,480 KB
testcase_21 AC 131 ms
41,452 KB
testcase_22 AC 132 ms
41,484 KB
testcase_23 AC 132 ms
41,476 KB
testcase_24 AC 130 ms
41,204 KB
testcase_25 AC 131 ms
41,376 KB
testcase_26 AC 124 ms
40,128 KB
testcase_27 AC 133 ms
41,344 KB
testcase_28 AC 132 ms
41,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class HelloWorld {

	    public static void main(String[] args) throws Exception {

	    	Scanner sc = new Scanner(System.in);
	    	int sum = sc.nextInt();
	    	int t = 5;
	    	int g = 2;
	    	int pg = 3;
	    	int count = 0;

	    	for (int number_pg = 0; number_pg <=sum / 3; number_pg ++) {
	    		for (int number_t = 0; number_t <= (sum - number_pg * 3) / 5; number_t ++) {
	    			for (int number_g = 0; number_g <= (sum - number_pg * 3 - number_t * 5) / 2&&
	    													number_g <= number_t; number_g ++) {
	    				if (number_t * 5 + number_g * 2 + number_pg * 3 == sum) {
	    					count ++;
	    				}
	    			}
	    		}
	    	}


	    	System.out.println(count);
	    	}

}
0