結果

問題 No.1184 Hà Nội
ユーザー RISE70226821RISE70226821
提出日時 2020-08-31 13:51:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 692 bytes
コンパイル時間 2,025 ms
コンパイル使用メモリ 74,404 KB
実行使用メモリ 54,388 KB
最終ジャッジ日時 2024-04-27 17:36:45
合計ジャッジ時間 6,930 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
52,908 KB
testcase_01 AC 116 ms
53,052 KB
testcase_02 AC 130 ms
53,844 KB
testcase_03 AC 129 ms
54,192 KB
testcase_04 AC 117 ms
52,704 KB
testcase_05 AC 118 ms
52,800 KB
testcase_06 AC 129 ms
54,192 KB
testcase_07 AC 128 ms
53,932 KB
testcase_08 AC 128 ms
54,028 KB
testcase_09 AC 117 ms
54,252 KB
testcase_10 AC 130 ms
54,368 KB
testcase_11 AC 129 ms
54,088 KB
testcase_12 AC 127 ms
54,164 KB
testcase_13 AC 130 ms
54,316 KB
testcase_14 AC 127 ms
53,836 KB
testcase_15 AC 126 ms
54,088 KB
testcase_16 AC 127 ms
53,956 KB
testcase_17 AC 115 ms
52,768 KB
testcase_18 AC 129 ms
54,140 KB
testcase_19 AC 130 ms
54,108 KB
testcase_20 AC 129 ms
54,340 KB
testcase_21 AC 128 ms
53,964 KB
testcase_22 AC 130 ms
53,884 KB
testcase_23 AC 130 ms
53,800 KB
testcase_24 AC 127 ms
54,072 KB
testcase_25 AC 127 ms
53,860 KB
testcase_26 AC 129 ms
54,056 KB
testcase_27 AC 128 ms
54,388 KB
testcase_28 AC 128 ms
54,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;

public class Main {
	public static void main (String[] args) throws java.lang.Exception
	{
		// your code goes here
		// 入力
		Scanner sc = new Scanner(System.in);
		long N = sc.nextLong();
		long L = sc.nextLong();
		long DIV = 998244353L;
		
		// 計算
		long disc = N / L;
		if(N % L != 0){
			disc++;
		}
		
		long ope = myPow(2L, disc, DIV);
		ope--;
		
		// 出力
		System.out.println(ope);
	}
	
	public static long myPow(long x, long n, long m){
		if(n == 0){
			return 1;
		}
		if(n%2 == 0){
			return myPow(x * x % m, n/2, m);
		}else{
			return x * myPow(x, n-1, m) % m;
		}
	}
}
0