結果

問題 No.1550 nullくんの町清掃 / null's Town Cleaning
ユーザー マサマサ
提出日時 2021-12-29 02:32:58
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 231 bytes
コンパイル時間 2,104 ms
コンパイル使用メモリ 74,524 KB
実行使用メモリ 54,392 KB
最終ジャッジ日時 2024-10-03 02:53:34
合計ジャッジ時間 4,132 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,080 KB
testcase_01 AC 130 ms
54,000 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 129 ms
54,176 KB
testcase_07 AC 131 ms
54,260 KB
testcase_08 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long n = sc.nextInt();
        
        System.out.println((long)n % 1_000_000_007);
    }
}
0