結果
問題 | No.2358 xy+yz+zx=N |
ユーザー | tenten |
提出日時 | 2024-05-02 14:13:59 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 681 ms / 2,000 ms |
コード長 | 2,088 bytes |
コンパイル時間 | 5,161 ms |
コンパイル使用メモリ | 82,168 KB |
実行使用メモリ | 49,856 KB |
最終ジャッジ日時 | 2024-05-02 14:14:10 |
合計ジャッジ時間 | 10,017 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 87 ms
40,380 KB |
testcase_01 | AC | 86 ms
40,484 KB |
testcase_02 | AC | 115 ms
40,208 KB |
testcase_03 | AC | 88 ms
38,668 KB |
testcase_04 | AC | 114 ms
40,300 KB |
testcase_05 | AC | 102 ms
40,276 KB |
testcase_06 | AC | 93 ms
38,948 KB |
testcase_07 | AC | 118 ms
40,720 KB |
testcase_08 | AC | 668 ms
49,784 KB |
testcase_09 | AC | 681 ms
49,856 KB |
testcase_10 | AC | 661 ms
45,352 KB |
testcase_11 | AC | 664 ms
45,896 KB |
testcase_12 | AC | 533 ms
44,324 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.function.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); List<Answer> ans = new ArrayList<>(); for (int i = 0; i * i <= n; i++) { for (int j = i; j * i <= n && j <= n; j++) { if (i == 0 && j == 0) { continue; } if ((n - i * j) % (i + j) == 0) { ans.add(new Answer((n - i * j) / (i + j), i, j)); if (i < j) { ans.add(new Answer((n - i * j) / (i + j), j, i)); } } } } System.out.println(ans.size()); System.out.println(ans.stream().map(x -> x.toString()).collect(Collectors.joining("\n"))); } static class Answer { int a; int b; int c; public Answer(int a, int b, int c) { this.a = a; this.b = b; this.c = c; } public String toString() { return a + " " + b + " " + c; } } } class Scanner { BufferedReader br; StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() { try { br = new BufferedReader(new InputStreamReader(System.in)); } catch (Exception e) { } } public int nextInt() { return Integer.parseInt(next()); } public long nextLong() { return Long.parseLong(next()); } public double nextDouble() { return Double.parseDouble(next()); } public String next() { try { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } } catch (Exception e) { e.printStackTrace(); } finally { return st.nextToken(); } } }