結果

問題 No.1184 Hà Nội
ユーザー RISE70226821RISE70226821
提出日時 2020-08-25 16:47:28
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 542 bytes
コンパイル時間 2,314 ms
コンパイル使用メモリ 74,360 KB
実行使用メモリ 61,156 KB
最終ジャッジ日時 2024-11-06 11:31:59
合計ジャッジ時間 9,570 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
60,976 KB
testcase_01 AC 138 ms
54,068 KB
testcase_02 AC 134 ms
53,784 KB
testcase_03 AC 136 ms
53,788 KB
testcase_04 AC 139 ms
54,084 KB
testcase_05 AC 137 ms
54,140 KB
testcase_06 AC 140 ms
54,272 KB
testcase_07 AC 138 ms
54,016 KB
testcase_08 AC 140 ms
54,232 KB
testcase_09 AC 137 ms
54,144 KB
testcase_10 AC 136 ms
54,256 KB
testcase_11 AC 136 ms
54,384 KB
testcase_12 AC 138 ms
53,908 KB
testcase_13 AC 138 ms
54,032 KB
testcase_14 AC 136 ms
54,120 KB
testcase_15 AC 137 ms
54,276 KB
testcase_16 AC 137 ms
54,048 KB
testcase_17 AC 133 ms
53,848 KB
testcase_18 AC 132 ms
53,964 KB
testcase_19 AC 140 ms
54,136 KB
testcase_20 AC 135 ms
54,176 KB
testcase_21 AC 134 ms
53,992 KB
testcase_22 TLE -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
権限があれば一括ダウンロードができます

ソースコード

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 = 1L;
		for(int i = 1; i <= disc; i++){
			ope = (ope * 2) % DIV;
		}
		ope--;
		
		// 出力
		System.out.println(ope);
	}
}
0