結果

問題 No.976 2 の 128 乗と M
ユーザー Mishan5055Mishan5055
提出日時 2020-02-25 17:07:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 298 bytes
コンパイル時間 2,280 ms
コンパイル使用メモリ 74,328 KB
実行使用メモリ 54,236 KB
最終ジャッジ日時 2024-10-13 12:23:11
合計ジャッジ時間 9,621 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
54,144 KB
testcase_01 AC 115 ms
53,904 KB
testcase_02 AC 120 ms
54,176 KB
testcase_03 AC 106 ms
52,984 KB
testcase_04 AC 125 ms
53,804 KB
testcase_05 AC 118 ms
53,808 KB
testcase_06 AC 118 ms
54,084 KB
testcase_07 AC 114 ms
53,896 KB
testcase_08 AC 123 ms
53,652 KB
testcase_09 AC 130 ms
54,148 KB
testcase_10 AC 119 ms
54,116 KB
testcase_11 AC 129 ms
53,956 KB
testcase_12 AC 108 ms
52,756 KB
testcase_13 AC 121 ms
53,828 KB
testcase_14 AC 120 ms
53,840 KB
testcase_15 AC 120 ms
53,804 KB
testcase_16 AC 104 ms
52,972 KB
testcase_17 AC 106 ms
53,108 KB
testcase_18 AC 104 ms
52,896 KB
testcase_19 AC 121 ms
53,836 KB
testcase_20 AC 107 ms
52,684 KB
testcase_21 AC 118 ms
53,920 KB
testcase_22 AC 118 ms
53,808 KB
testcase_23 AC 106 ms
52,776 KB
testcase_24 AC 112 ms
53,592 KB
testcase_25 AC 104 ms
52,916 KB
testcase_26 AC 124 ms
53,804 KB
testcase_27 AC 126 ms
54,020 KB
testcase_28 AC 115 ms
53,832 KB
testcase_29 AC 118 ms
54,044 KB
testcase_30 AC 121 ms
53,776 KB
testcase_31 AC 111 ms
52,956 KB
testcase_32 AC 122 ms
53,860 KB
testcase_33 AC 119 ms
53,980 KB
testcase_34 AC 119 ms
53,908 KB
testcase_35 AC 116 ms
53,968 KB
testcase_36 AC 119 ms
53,828 KB
testcase_37 AC 118 ms
54,168 KB
testcase_38 AC 108 ms
52,824 KB
testcase_39 AC 105 ms
52,964 KB
testcase_40 AC 107 ms
52,956 KB
testcase_41 AC 123 ms
54,232 KB
testcase_42 AC 119 ms
54,040 KB
testcase_43 AC 120 ms
53,668 KB
testcase_44 AC 106 ms
52,792 KB
testcase_45 AC 103 ms
52,916 KB
testcase_46 AC 105 ms
52,908 KB
testcase_47 AC 115 ms
53,968 KB
testcase_48 AC 108 ms
53,200 KB
testcase_49 AC 123 ms
53,844 KB
testcase_50 AC 115 ms
54,236 KB
testcase_51 AC 103 ms
53,040 KB
testcase_52 AC 115 ms
53,840 KB
testcase_53 AC 119 ms
53,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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