結果

問題 No.1550 nullくんの町清掃 / null's Town Cleaning
ユーザー ks2mks2m
提出日時 2021-06-18 21:53:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 229 bytes
コンパイル時間 3,286 ms
コンパイル使用メモリ 72,724 KB
実行使用メモリ 55,940 KB
最終ジャッジ日時 2023-09-04 22:52:15
合計ジャッジ時間 3,886 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
55,844 KB
testcase_01 AC 128 ms
55,836 KB
testcase_02 AC 125 ms
55,940 KB
testcase_03 AC 126 ms
53,824 KB
testcase_04 AC 124 ms
55,492 KB
testcase_05 AC 125 ms
55,644 KB
testcase_06 AC 124 ms
55,712 KB
testcase_07 AC 125 ms
55,452 KB
testcase_08 AC 125 ms
55,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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

		System.out.println(n % 1000000007);
	}
}
0