結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
46,516 KB
testcase_01 AC 145 ms
41,520 KB
testcase_02 AC 140 ms
41,432 KB
testcase_03 AC 144 ms
41,180 KB
testcase_04 AC 145 ms
41,628 KB
testcase_05 AC 140 ms
41,548 KB
testcase_06 AC 140 ms
41,404 KB
testcase_07 AC 144 ms
41,336 KB
testcase_08 AC 143 ms
41,484 KB
testcase_09 AC 141 ms
41,340 KB
testcase_10 AC 143 ms
41,148 KB
testcase_11 AC 145 ms
41,112 KB
testcase_12 AC 145 ms
41,208 KB
testcase_13 AC 143 ms
41,296 KB
testcase_14 AC 141 ms
41,352 KB
testcase_15 AC 140 ms
41,580 KB
testcase_16 AC 136 ms
41,512 KB
testcase_17 AC 135 ms
41,520 KB
testcase_18 AC 136 ms
41,296 KB
testcase_19 AC 146 ms
41,288 KB
testcase_20 AC 136 ms
41,340 KB
testcase_21 AC 139 ms
41,348 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