結果

問題 No.1184 Hà Nội
ユーザー RISE70226821RISE70226821
提出日時 2020-08-31 13:51:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 692 bytes
コンパイル時間 2,110 ms
コンパイル使用メモリ 73,936 KB
実行使用メモリ 41,816 KB
最終ジャッジ日時 2024-11-15 21:47:13
合計ジャッジ時間 7,331 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
41,036 KB
testcase_01 AC 136 ms
41,212 KB
testcase_02 AC 151 ms
41,244 KB
testcase_03 AC 134 ms
41,524 KB
testcase_04 AC 136 ms
41,396 KB
testcase_05 AC 134 ms
41,248 KB
testcase_06 AC 135 ms
41,132 KB
testcase_07 AC 134 ms
41,264 KB
testcase_08 AC 135 ms
41,064 KB
testcase_09 AC 135 ms
41,300 KB
testcase_10 AC 142 ms
41,816 KB
testcase_11 AC 136 ms
41,216 KB
testcase_12 AC 135 ms
41,716 KB
testcase_13 AC 136 ms
41,144 KB
testcase_14 AC 133 ms
41,112 KB
testcase_15 AC 134 ms
41,592 KB
testcase_16 AC 133 ms
41,432 KB
testcase_17 AC 136 ms
41,368 KB
testcase_18 AC 134 ms
41,288 KB
testcase_19 AC 135 ms
41,420 KB
testcase_20 AC 133 ms
41,172 KB
testcase_21 AC 132 ms
41,076 KB
testcase_22 AC 135 ms
41,516 KB
testcase_23 AC 132 ms
41,240 KB
testcase_24 AC 133 ms
41,140 KB
testcase_25 AC 133 ms
41,240 KB
testcase_26 AC 132 ms
41,156 KB
testcase_27 AC 136 ms
41,244 KB
testcase_28 AC 135 ms
41,144 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