結果
問題 | No.443 GCD of Permutation |
ユーザー | hermione17 |
提出日時 | 2016-11-11 22:52:42 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,464 bytes |
コンパイル時間 | 3,141 ms |
コンパイル使用メモリ | 78,016 KB |
実行使用メモリ | 41,548 KB |
最終ジャッジ日時 | 2024-05-04 02:54:11 |
合計ジャッジ時間 | 7,588 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 103 ms
41,244 KB |
testcase_02 | AC | 94 ms
39,920 KB |
testcase_03 | AC | 101 ms
40,172 KB |
testcase_04 | AC | 113 ms
41,444 KB |
testcase_05 | AC | 98 ms
40,356 KB |
testcase_06 | AC | 108 ms
40,908 KB |
testcase_07 | AC | 96 ms
40,340 KB |
testcase_08 | AC | 112 ms
41,040 KB |
testcase_09 | AC | 100 ms
40,292 KB |
testcase_10 | AC | 106 ms
41,468 KB |
testcase_11 | WA | - |
testcase_12 | AC | 100 ms
40,356 KB |
testcase_13 | AC | 106 ms
40,932 KB |
testcase_14 | AC | 110 ms
40,396 KB |
testcase_15 | WA | - |
testcase_16 | AC | 110 ms
41,360 KB |
testcase_17 | AC | 104 ms
40,104 KB |
testcase_18 | AC | 135 ms
41,508 KB |
testcase_19 | AC | 114 ms
41,548 KB |
testcase_20 | AC | 134 ms
40,984 KB |
testcase_21 | AC | 132 ms
41,292 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 113 ms
40,448 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 120 ms
40,664 KB |
testcase_29 | WA | - |
testcase_30 | AC | 115 ms
40,272 KB |
testcase_31 | AC | 116 ms
40,364 KB |
ソースコード
import java.io.PrintStream; import java.util.Scanner; public class Y443 { Scanner in = new Scanner(System.in); PrintStream out = new PrintStream(System.out); Y443() throws Exception { String s = in.next(); int[] count = new int[10]; boolean[] flag = new boolean[10]; for (int i = 0; i < s.length(); i++) { count[s.charAt(i) - '0']++; } if (isRepetitive(s)) { out.println(s); return; } for (int i = 1; i < count.length; i++) { if (count[i] + count[0] == s.length()) { flag[i] = true; } } int sum = 0; for (int i = 0; i < s.length(); i++) { sum += s.charAt(i) - '0'; } if (sum % 9 == 0) { flag[9] = true; } if (sum % 3 == 0) { flag[3] = true; } for (int i = 1; i < 10; i++) { if (allDigitsDivided(s, i)) { flag[i] = true; } } if (flag[4]) flag[2] = false; if (flag[8]) flag[4] = false; if (flag[9]) flag[3] = false; int ans = 1; for (int i = 0; i < 10; i++) { if (flag[i]) { ans *= i; } } out.println(ans); } boolean isRepetitive(String s) { for (int i = 0; i < s.length(); i++) { if (s.charAt(0) != s.charAt(i)) { return false; } } return true; } boolean allDigitsDivided(String s, int x) { for (int i = 0; i < s.length(); i++) { int y = s.charAt(i) - '0'; if (y % x > 0) { return false; } } return true; } public static void main(String argv[]) throws Exception { new Y443(); } }