結果

問題 No.420 mod2漸化式
ユーザー nkhrlabnkhrlab
提出日時 2018-07-12 03:26:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 1,000 ms
コード長 1,008 bytes
コンパイル時間 2,206 ms
コンパイル使用メモリ 78,108 KB
実行使用メモリ 54,220 KB
最終ジャッジ日時 2024-09-22 14:23:22
合計ジャッジ時間 7,559 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
54,188 KB
testcase_01 AC 122 ms
53,776 KB
testcase_02 AC 122 ms
54,040 KB
testcase_03 AC 122 ms
54,000 KB
testcase_04 AC 122 ms
53,892 KB
testcase_05 AC 122 ms
53,824 KB
testcase_06 AC 53 ms
50,336 KB
testcase_07 AC 119 ms
54,156 KB
testcase_08 AC 122 ms
54,100 KB
testcase_09 AC 121 ms
54,200 KB
testcase_10 AC 121 ms
53,984 KB
testcase_11 AC 120 ms
54,148 KB
testcase_12 AC 120 ms
53,908 KB
testcase_13 AC 120 ms
53,964 KB
testcase_14 AC 118 ms
54,020 KB
testcase_15 AC 123 ms
53,676 KB
testcase_16 AC 122 ms
54,220 KB
testcase_17 AC 121 ms
54,064 KB
testcase_18 AC 121 ms
54,020 KB
testcase_19 AC 122 ms
54,164 KB
testcase_20 AC 120 ms
53,920 KB
testcase_21 AC 120 ms
53,732 KB
testcase_22 AC 119 ms
53,704 KB
testcase_23 AC 122 ms
53,864 KB
testcase_24 AC 122 ms
54,092 KB
testcase_25 AC 124 ms
54,136 KB
testcase_26 AC 120 ms
53,760 KB
testcase_27 AC 122 ms
54,024 KB
testcase_28 AC 122 ms
54,000 KB
testcase_29 AC 120 ms
54,160 KB
testcase_30 AC 122 ms
53,988 KB
testcase_31 AC 120 ms
53,976 KB
testcase_32 AC 126 ms
54,196 KB
testcase_33 AC 53 ms
50,348 KB
testcase_34 AC 53 ms
49,944 KB
testcase_35 AC 53 ms
50,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main
{

  public static void main(String[] args) throws IOException
  {
    BufferedReader r = new BufferedReader(new InputStreamReader(System.in), 1);
    String s = r.readLine();
    int x = Integer.parseInt(s);

    long[][] z = new long[100][100];
    long[][] c = new long[100][100];

    if(x == 0)
    {
      System.out.println("1 0");
      return;
    }

    if(x > 31)
    {
      System.out.println("0 0");
      return;
    }

    for(int i = 1; i <= 31; i++)
    {
      z[1][i] = (1 << i) - 1;
      c[1][i] = i;
      //System.out.println(z[1][i]);
    }

    for(int i = 2; i <= x; i++)
    {
      for(int j = 1; j <= 31; j++)
      {
        for(int k = i; k <= j; k++)
        {
          z[i][j] += c[i - 1][k - 1] * (1 << (k - 1)) + z[i - 1][k - 1];
          c[i][j] += c[i - 1][k - 1];
        }
      }
    }

    
    System.out.printf("%d %d\n", c[x][31], z[x][31]);

  }

}
0