結果

問題 No.2679 MODice
ユーザー ks2mks2m
提出日時 2024-03-20 21:01:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 246 bytes
コンパイル時間 3,194 ms
コンパイル使用メモリ 73,760 KB
実行使用メモリ 54,284 KB
最終ジャッジ日時 2024-09-30 06:48:20
合計ジャッジ時間 5,658 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
53,920 KB
testcase_01 AC 121 ms
53,848 KB
testcase_02 AC 123 ms
54,020 KB
testcase_03 AC 128 ms
53,928 KB
testcase_04 AC 126 ms
54,284 KB
testcase_05 AC 122 ms
53,968 KB
testcase_06 AC 120 ms
53,968 KB
testcase_07 AC 121 ms
53,960 KB
testcase_08 AC 121 ms
53,720 KB
testcase_09 AC 123 ms
54,172 KB
testcase_10 AC 121 ms
53,756 KB
testcase_11 AC 123 ms
54,156 KB
testcase_12 AC 121 ms
54,020 KB
testcase_13 AC 122 ms
54,052 KB
testcase_14 AC 130 ms
53,980 KB
testcase_15 AC 122 ms
53,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int k = sc.nextInt();
		sc.close();

		System.out.println(166374059);
	}
}
0