結果

問題 No.1089 三変数方程式
ユーザー xRS43BofaUEZ5gcxRS43BofaUEZ5gc
提出日時 2021-03-19 13:29:53
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 386 bytes
コンパイル時間 3,437 ms
コンパイル使用メモリ 74,320 KB
実行使用メモリ 108,984 KB
最終ジャッジ日時 2024-11-18 08:05:17
合計ジャッジ時間 36,843 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
59,064 KB
testcase_01 AC 95 ms
102,460 KB
testcase_02 AC 164 ms
59,068 KB
testcase_03 TLE -
testcase_04 AC 369 ms
57,800 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 845 ms
96,616 KB
testcase_08 TLE -
testcase_09 AC 283 ms
106,760 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class HelloWorld {
		public static void main (String[] args) {
			Scanner sc = new Scanner(System.in);
			int n = sc.nextInt();
			sc.close();

			int count =0;
			for (int x=0;x<=n;x++) {
				for (int y=0;y<=n;y++) {
					for(int z=0;z<=n;z++) {
						if (x+y+z == n) {
							 count ++;
						}
					}
				}
			}
			System.out.println(count);


	}
}
0