結果

問題 No.522 Make Test Cases(テストケースを作る)
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-26 18:09:18
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 368 bytes
コンパイル時間 2,871 ms
コンパイル使用メモリ 76,936 KB
実行使用メモリ 64,720 KB
最終ジャッジ日時 2024-05-03 12:02:40
合計ジャッジ時間 9,471 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 280 ms
55,584 KB
testcase_01 AC 390 ms
61,144 KB
testcase_02 AC 366 ms
59,044 KB
testcase_03 AC 543 ms
64,552 KB
testcase_04 WA -
testcase_05 AC 168 ms
54,760 KB
testcase_06 AC 156 ms
54,976 KB
testcase_07 AC 180 ms
55,168 KB
testcase_08 AC 226 ms
55,304 KB
testcase_09 AC 463 ms
63,160 KB
testcase_10 AC 1,908 ms
64,720 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-i; j++) {
				k = n-i-j;
				if (j<=k && k>0 && 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