結果

問題 No.976 2 の 128 乗と M
ユーザー tentententen
提出日時 2020-08-25 08:47:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 311 bytes
コンパイル時間 1,736 ms
コンパイル使用メモリ 74,488 KB
実行使用メモリ 41,728 KB
最終ジャッジ日時 2024-04-24 04:12:02
合計ジャッジ時間 9,023 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,088 KB
testcase_01 AC 107 ms
40,220 KB
testcase_02 AC 111 ms
40,608 KB
testcase_03 AC 113 ms
41,320 KB
testcase_04 AC 112 ms
41,240 KB
testcase_05 AC 106 ms
40,180 KB
testcase_06 AC 109 ms
41,300 KB
testcase_07 AC 100 ms
40,316 KB
testcase_08 AC 98 ms
40,212 KB
testcase_09 AC 111 ms
41,340 KB
testcase_10 AC 102 ms
40,180 KB
testcase_11 AC 97 ms
40,344 KB
testcase_12 AC 102 ms
40,280 KB
testcase_13 AC 106 ms
40,932 KB
testcase_14 AC 96 ms
40,324 KB
testcase_15 AC 107 ms
41,444 KB
testcase_16 AC 108 ms
41,152 KB
testcase_17 AC 97 ms
40,268 KB
testcase_18 AC 111 ms
41,332 KB
testcase_19 AC 108 ms
40,072 KB
testcase_20 AC 107 ms
40,092 KB
testcase_21 AC 98 ms
40,264 KB
testcase_22 AC 105 ms
41,200 KB
testcase_23 AC 95 ms
40,348 KB
testcase_24 AC 106 ms
40,316 KB
testcase_25 AC 106 ms
41,036 KB
testcase_26 AC 99 ms
40,060 KB
testcase_27 AC 112 ms
41,192 KB
testcase_28 AC 101 ms
40,208 KB
testcase_29 AC 115 ms
41,088 KB
testcase_30 AC 109 ms
40,296 KB
testcase_31 AC 116 ms
41,284 KB
testcase_32 AC 119 ms
41,276 KB
testcase_33 AC 147 ms
41,728 KB
testcase_34 AC 99 ms
40,276 KB
testcase_35 AC 105 ms
40,556 KB
testcase_36 AC 97 ms
40,124 KB
testcase_37 AC 105 ms
40,508 KB
testcase_38 AC 109 ms
41,308 KB
testcase_39 AC 113 ms
41,484 KB
testcase_40 AC 111 ms
40,908 KB
testcase_41 AC 109 ms
40,264 KB
testcase_42 AC 108 ms
41,232 KB
testcase_43 AC 100 ms
40,608 KB
testcase_44 AC 110 ms
40,652 KB
testcase_45 AC 113 ms
41,164 KB
testcase_46 AC 113 ms
41,172 KB
testcase_47 AC 101 ms
39,680 KB
testcase_48 AC 108 ms
41,104 KB
testcase_49 AC 110 ms
41,208 KB
testcase_50 AC 107 ms
41,108 KB
testcase_51 AC 114 ms
41,168 KB
testcase_52 AC 114 ms
41,328 KB
testcase_53 AC 99 ms
39,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long n = sc.nextLong();
        long x = 1;
        for (int i = 0; i < 128; i++) {
            x *= 2;
            x %= n;
        }
        System.out.println(x);
    }
}
0