結果
問題 | No.689 E869120 and Constructing Array 3 |
ユーザー | tenten |
提出日時 | 2023-12-19 16:28:49 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 74 ms / 1,000 ms |
コード長 | 2,442 bytes |
コンパイル時間 | 2,668 ms |
コンパイル使用メモリ | 93,472 KB |
実行使用メモリ | 51,276 KB |
最終ジャッジ日時 | 2024-09-27 08:53:52 |
合計ジャッジ時間 | 5,260 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 70 ms
51,208 KB |
testcase_01 | AC | 71 ms
51,240 KB |
testcase_02 | AC | 70 ms
50,996 KB |
testcase_03 | AC | 70 ms
51,084 KB |
testcase_04 | AC | 74 ms
51,168 KB |
testcase_05 | AC | 70 ms
50,924 KB |
testcase_06 | AC | 71 ms
50,796 KB |
testcase_07 | AC | 70 ms
51,020 KB |
testcase_08 | AC | 69 ms
51,064 KB |
testcase_09 | AC | 71 ms
51,056 KB |
testcase_10 | AC | 71 ms
51,032 KB |
testcase_11 | AC | 69 ms
51,140 KB |
testcase_12 | AC | 70 ms
51,232 KB |
testcase_13 | AC | 70 ms
51,276 KB |
testcase_14 | AC | 71 ms
51,180 KB |
testcase_15 | AC | 71 ms
50,940 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); for (int i = 1; i * i <= n; i++) { for (int j = i; j * i <= n; j++) { int remain = n - i * j; for (int k = 1; i + j + k < 250; k++) { if (remain % k == 0 && i + j + k + remain / k <= 250) { ArrayList<Integer> ans = getList(i, j, k, remain / k); System.out.println(ans.size()); System.out.println(ans.stream().map(x -> x.toString()).collect(Collectors.joining(" "))); return; } } } } } static ArrayList<Integer> getList(int a, int b, int c, int d) { ArrayList<Integer> ans = new ArrayList<>(); while (a-- > 0) { ans.add(3); } while (b-- > 0) { ans.add(4); } while (c-- > 0) { ans.add(5); } while (d-- > 0) { ans.add(6); } return ans; } } class Utilities { static String arrayToLineString(Object[] arr) { return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n")); } static String arrayToLineString(int[] arr) { return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new)); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public int[] nextIntArray() throws Exception { return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray(); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }