結果

問題 No.2679 MODice
ユーザー ks2mks2m
提出日時 2024-03-20 21:01:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 246 bytes
コンパイル時間 3,173 ms
コンパイル使用メモリ 73,792 KB
実行使用メモリ 57,976 KB
最終ジャッジ日時 2024-03-20 21:01:42
合計ジャッジ時間 6,053 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
57,836 KB
testcase_01 AC 126 ms
57,728 KB
testcase_02 AC 125 ms
57,828 KB
testcase_03 AC 127 ms
57,696 KB
testcase_04 AC 125 ms
57,716 KB
testcase_05 AC 153 ms
57,616 KB
testcase_06 AC 125 ms
57,824 KB
testcase_07 AC 124 ms
57,704 KB
testcase_08 AC 127 ms
57,976 KB
testcase_09 AC 124 ms
57,964 KB
testcase_10 AC 128 ms
57,696 KB
testcase_11 AC 126 ms
57,836 KB
testcase_12 AC 126 ms
57,960 KB
testcase_13 AC 125 ms
57,824 KB
testcase_14 AC 125 ms
57,852 KB
testcase_15 AC 130 ms
57,832 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