結果
問題 | No.420 mod2漸化式 |
ユーザー | ziita |
提出日時 | 2017-06-28 21:12:03 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,284 bytes |
コンパイル時間 | 2,123 ms |
コンパイル使用メモリ | 86,496 KB |
実行使用メモリ | 53,200 KB |
最終ジャッジ日時 | 2024-10-04 14:55:33 |
合計ジャッジ時間 | 6,007 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 75 ms
51,360 KB |
testcase_01 | WA | - |
testcase_02 | AC | 94 ms
52,872 KB |
testcase_03 | AC | 81 ms
52,796 KB |
testcase_04 | AC | 78 ms
51,376 KB |
testcase_05 | AC | 79 ms
52,936 KB |
testcase_06 | AC | 75 ms
51,332 KB |
testcase_07 | AC | 89 ms
52,804 KB |
testcase_08 | AC | 86 ms
51,436 KB |
testcase_09 | AC | 86 ms
52,248 KB |
testcase_10 | AC | 74 ms
51,324 KB |
testcase_11 | AC | 88 ms
51,944 KB |
testcase_12 | AC | 87 ms
51,780 KB |
testcase_13 | AC | 75 ms
52,720 KB |
testcase_14 | AC | 90 ms
51,204 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 83 ms
50,916 KB |
testcase_33 | AC | 55 ms
50,200 KB |
testcase_34 | AC | 56 ms
50,232 KB |
testcase_35 | AC | 56 ms
50,148 KB |
ソースコード
import java.io.ByteArrayInputStream; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.util.Arrays; import java.util.InputMismatchException; import java.io.OutputStream; import java.util.StringTokenizer; import java.io.BufferedReader; import java.io.InputStreamReader; import java.util.HashMap; import java.util.Map; import java.util.ArrayList; import java.util.List; import java.util.Scanner; import java.math.BigDecimal; /** * Built using CHelper plug-in * Actual solution is at the top */ public class Main { public static void main(String[] args) { InputStream inputStream = System.in; OutputStream outputStream = System.out; InputReader in = new InputReader(inputStream); PrintWriter out = new PrintWriter(outputStream); Task solver = new Task(); solver.solve(1, in, out); out.close(); } static class Task { public void solve(int testNumber, InputReader in, PrintWriter out) { int x = in.nextInt(); if(x>31){ out.println(0+" "+0); return; } long n = 1; long d = 1; for(int i=1; i<=x; i++){ d *= i; n *= 31-x+i; } long num = n/d; long T = num*x/31; long res = 2147483647*T; out.println(num+" "+res); } } static class InputReader { public BufferedReader reader; public StringTokenizer tokenizer; public InputReader(InputStream stream) { reader = new BufferedReader(new InputStreamReader(stream), 32768); tokenizer = null; } public String next() { while (tokenizer == null || !tokenizer.hasMoreTokens()) { try { tokenizer = new StringTokenizer(reader.readLine()); } catch (IOException e) { throw new RuntimeException(e); } } return tokenizer.nextToken(); } public int nextInt() { return Integer.parseInt(next()); } public long nextLong() { return Long.parseLong(next()); } } }