結果

問題 No.522 Make Test Cases(テストケースを作る)
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-26 18:04:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,726 ms / 2,000 ms
コード長 366 bytes
コンパイル時間 2,720 ms
コンパイル使用メモリ 76,708 KB
実行使用メモリ 52,876 KB
最終ジャッジ日時 2024-11-24 11:09:27
合計ジャッジ時間 8,722 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 245 ms
43,332 KB
testcase_01 AC 367 ms
49,292 KB
testcase_02 AC 334 ms
47,248 KB
testcase_03 AC 474 ms
51,864 KB
testcase_04 AC 153 ms
42,492 KB
testcase_05 AC 142 ms
42,816 KB
testcase_06 AC 155 ms
42,356 KB
testcase_07 AC 166 ms
42,688 KB
testcase_08 AC 208 ms
43,188 KB
testcase_09 AC 415 ms
51,400 KB
testcase_10 AC 1,726 ms
52,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static void solve (int n) {
		int k;
		for (int i=1; i<=n-2; i++) {
			for (int j=i; j<=n-2; j++) {
				k = n-i-j;
				if (k>0 && j<=k && i+j+k==n) {System.out.println(i+" "+j+" "+k);}
			}
		}
	}
	public static void main(String[] args) {
		int n = sc.nextInt();
		solve(n);
	}
	static Scanner sc = new Scanner(System.in);
}
0