結果

問題 No.146 試験監督(1)
ユーザー mitsuomitsuo
提出日時 2016-05-04 23:29:35
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 649 bytes
コンパイル時間 2,691 ms
コンパイル使用メモリ 75,248 KB
実行使用メモリ 63,388 KB
最終ジャッジ日時 2024-04-15 11:43:51
合計ジャッジ時間 6,284 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package jp.fedom.challange.yuki.q146;

import java.math.BigInteger;
import java.util.Scanner;

public class Main {
	static BigInteger t = BigInteger.ZERO;
	static BigInteger m = new BigInteger("1000000007");

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		while (sc.hasNext()) {
			solve(sc.nextLine());
		}
		t = t.mod(m);
		System.out.println(t.toString());

		sc.close();
	}

	public static void solve(String input) {
		if (input.split(" ").length == 1) {
			input = null;
			return;
		}
		String[] ss = input.split(" ");
		long s = Long.valueOf(ss[0]);
		long k = Long.valueOf(ss[1]);
		input = null;


	}
}
0