結果

問題 No.420 mod2漸化式
ユーザー ziitaziita
提出日時 2017-06-28 21:12:03
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,284 bytes
コンパイル時間 2,327 ms
コンパイル使用メモリ 87,352 KB
実行使用メモリ 55,144 KB
最終ジャッジ日時 2024-04-15 04:07:20
合計ジャッジ時間 6,673 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
51,076 KB
testcase_01 WA -
testcase_02 AC 84 ms
51,332 KB
testcase_03 AC 93 ms
52,844 KB
testcase_04 AC 98 ms
52,580 KB
testcase_05 AC 99 ms
52,864 KB
testcase_06 AC 83 ms
51,016 KB
testcase_07 AC 86 ms
51,216 KB
testcase_08 AC 105 ms
52,744 KB
testcase_09 AC 98 ms
53,008 KB
testcase_10 AC 86 ms
50,988 KB
testcase_11 AC 84 ms
51,160 KB
testcase_12 AC 85 ms
51,268 KB
testcase_13 AC 101 ms
52,936 KB
testcase_14 AC 100 ms
52,948 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 84 ms
51,356 KB
testcase_33 AC 58 ms
50,152 KB
testcase_34 AC 58 ms
50,200 KB
testcase_35 AC 58 ms
50,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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());
        }

    }
}
0