結果
問題 | No.435 占い(Extra) |
ユーザー | 37zigen |
提出日時 | 2016-12-02 18:48:56 |
言語 | Java21 (openjdk 21) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,593 bytes |
コンパイル時間 | 4,098 ms |
コンパイル使用メモリ | 77,688 KB |
実行使用メモリ | 66,360 KB |
最終ジャッジ日時 | 2024-10-08 12:18:44 |
合計ジャッジ時間 | 8,902 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 162 ms
42,416 KB |
testcase_01 | AC | 201 ms
42,524 KB |
testcase_02 | AC | 203 ms
42,532 KB |
testcase_03 | AC | 205 ms
42,636 KB |
testcase_04 | AC | 160 ms
42,336 KB |
testcase_05 | AC | 203 ms
42,472 KB |
testcase_06 | MLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
ソースコード
package yukicoder; import java.io.PrintWriter; import java.util.Scanner; public class Q435 { static final int[] inv = new int[] { 0, 1, 5, 0, 7, 2, 0, 4, 8 }; public static void main(String[] args) { Scanner sc = new Scanner(System.in); PrintWriter pw=new PrintWriter(System.out); int T = sc.nextInt(); while (T-- > 0) { System.gc(); int n = sc.nextInt(); int x = sc.nextInt(); int a = sc.nextInt(); int b = sc.nextInt(); int m = sc.nextInt(); int reducedCombi = 1; int count3 = 0; int ans = 0; boolean f = true; int cur = x; for (int i = 0; i < n; ++i) { int combi = reducedCombi; if (i > 0) { cur = next(n, cur, a, b, m); reducedCombi = reducedCombi * inv[reduce3(i) % 9] * reduce3(n - 1 - i + 1) % 9; count3 = count3 - count3(i) + count3(n - 1 - i + 1); if (count3 >= 2) { combi = 0; } else if (count3 == 1) { combi = 3 * reducedCombi % 9; } else if (count3 == 0) { combi = reducedCombi % 9; } else if (count3 < 0) { throw new AssertionError(); } } ans = (ans + combi * (cur % 10)) % 9; if (f) if (cur % 10 > 0) f = false; } if (f) pw.println(0); else if (!f && ans == 0) pw.println(9); else pw.println(ans); } pw.close(); } static int count3(int n) { int c = 0; while (n > 0 && n % 3 == 0) { n /= 3; ++c; } return c; } static int reduce3(int n) { while (n > 0 && n % 3 == 0) n /= 3; return n; } static int next(int n, int cur, int a, int b, int m) { return ((cur ^ a) + b) % m; } }