結果
問題 | No.2358 xy+yz+zx=N |
ユーザー | tenten |
提出日時 | 2024-05-02 14:13:59 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 718 ms / 2,000 ms |
コード長 | 2,088 bytes |
コンパイル時間 | 2,875 ms |
コンパイル使用メモリ | 83,548 KB |
実行使用メモリ | 50,000 KB |
最終ジャッジ日時 | 2024-11-23 04:37:30 |
合計ジャッジ時間 | 8,709 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 112 ms
40,584 KB |
testcase_01 | AC | 102 ms
40,648 KB |
testcase_02 | AC | 101 ms
40,400 KB |
testcase_03 | AC | 108 ms
41,000 KB |
testcase_04 | AC | 106 ms
40,380 KB |
testcase_05 | AC | 113 ms
40,796 KB |
testcase_06 | AC | 109 ms
40,404 KB |
testcase_07 | AC | 132 ms
41,088 KB |
testcase_08 | AC | 703 ms
49,932 KB |
testcase_09 | AC | 718 ms
50,000 KB |
testcase_10 | AC | 697 ms
45,456 KB |
testcase_11 | AC | 705 ms
46,188 KB |
testcase_12 | AC | 575 ms
44,956 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(); } } }