結果
問題 | No.1006 Share an Integer |
ユーザー | silviasetitech |
提出日時 | 2020-03-13 21:00:04 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,568 bytes |
コンパイル時間 | 2,503 ms |
コンパイル使用メモリ | 79,900 KB |
実行使用メモリ | 115,844 KB |
最終ジャッジ日時 | 2024-11-22 18:24:09 |
合計ジャッジ時間 | 38,916 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 160 ms
61,592 KB |
testcase_01 | AC | 156 ms
113,700 KB |
testcase_02 | AC | 164 ms
61,884 KB |
testcase_03 | AC | 162 ms
115,384 KB |
testcase_04 | AC | 163 ms
61,844 KB |
testcase_05 | AC | 162 ms
114,796 KB |
testcase_06 | AC | 175 ms
62,072 KB |
testcase_07 | AC | 179 ms
115,588 KB |
testcase_08 | AC | 176 ms
62,096 KB |
testcase_09 | AC | 179 ms
115,844 KB |
testcase_10 | AC | 165 ms
61,460 KB |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
ソースコード
import java.io.OutputStream; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.util.Scanner; /** * Built using CHelper plug-in * Actual solution is at the top * * @author silviase */ public class Main { public static void main(String[] args) { InputStream inputStream = System.in; OutputStream outputStream = System.out; Scanner in = new Scanner(inputStream); PrintWriter out = new PrintWriter(outputStream); split solver = new split(); solver.solve(1, in, out); out.close(); } static class split { public void solve(int testNumber, Scanner in, PrintWriter out) { int x = in.nextInt(); int[] a = new int[x + 1]; for (int i = 0; i <= x; i++) { a[i] = i; } for (int i = 1; i <= x; i++) { for (int j = 1; j <= x; j++) { if (j % i == 0) { a[j]--; } } } StringBuilder sb = new StringBuilder(); int min = 100000000; for (int i = 1; i < x; i++) { int cmp = Math.abs(a[i] - a[x - i]); if (min == cmp) { sb.append(i + " " + (x - i) + "\n"); } else if (min > cmp) { sb = new StringBuilder(i + " " + (x - i) + "\n"); min = cmp; } } out.print(sb.toString()); } } }