結果

問題 No.522 Make Test Cases(テストケースを作る)
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-26 18:12:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,849 ms / 2,000 ms
コード長 359 bytes
コンパイル時間 4,008 ms
コンパイル使用メモリ 75,884 KB
実行使用メモリ 53,688 KB
最終ジャッジ日時 2024-05-03 12:05:08
合計ジャッジ時間 9,246 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 257 ms
43,312 KB
testcase_01 AC 390 ms
50,120 KB
testcase_02 AC 348 ms
46,096 KB
testcase_03 AC 508 ms
52,248 KB
testcase_04 AC 148 ms
42,184 KB
testcase_05 AC 157 ms
42,492 KB
testcase_06 AC 157 ms
42,440 KB
testcase_07 AC 160 ms
42,736 KB
testcase_08 AC 230 ms
43,328 KB
testcase_09 AC 441 ms
51,200 KB
testcase_10 AC 1,849 ms
53,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static void solve (int n) {
		int k;
		for (int i=1; i<=n/3; i++) {
			for (int j=i; j<=n/2; j++) {
				k = n-i-j;
				if (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