結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,080 KB
testcase_01 AC 135 ms
54,152 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 135 ms
54,288 KB
testcase_07 AC 131 ms
54,076 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