結果
問題 | No.1006 Share an Integer |
ユーザー | silviasetitech |
提出日時 | 2020-03-13 21:00:04 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,568 bytes |
コンパイル時間 | 2,378 ms |
コンパイル使用メモリ | 83,996 KB |
実行使用メモリ | 66,368 KB |
最終ジャッジ日時 | 2024-05-02 06:47:06 |
合計ジャッジ時間 | 7,817 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 123 ms
61,456 KB |
testcase_01 | AC | 138 ms
54,916 KB |
testcase_02 | AC | 145 ms
55,060 KB |
testcase_03 | AC | 134 ms
55,016 KB |
testcase_04 | AC | 142 ms
54,968 KB |
testcase_05 | AC | 155 ms
54,920 KB |
testcase_06 | AC | 144 ms
54,500 KB |
testcase_07 | AC | 155 ms
54,972 KB |
testcase_08 | AC | 147 ms
54,800 KB |
testcase_09 | AC | 148 ms
54,700 KB |
testcase_10 | AC | 157 ms
55,196 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
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()); } } }