結果

問題 No.3026 Third Power Problem
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2017-03-31 22:45:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 269 bytes
コンパイル時間 1,962 ms
コンパイル使用メモリ 74,204 KB
実行使用メモリ 54,304 KB
最終ジャッジ日時 2024-07-07 05:01:23
合計ジャッジ時間 5,260 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
54,108 KB
testcase_01 AC 100 ms
52,868 KB
testcase_02 AC 116 ms
53,892 KB
testcase_03 AC 111 ms
54,160 KB
testcase_04 AC 113 ms
54,084 KB
testcase_05 AC 102 ms
52,992 KB
testcase_06 AC 111 ms
54,096 KB
testcase_07 AC 108 ms
53,856 KB
testcase_08 AC 108 ms
53,844 KB
testcase_09 AC 112 ms
54,088 KB
testcase_10 AC 109 ms
53,924 KB
testcase_11 AC 105 ms
53,904 KB
testcase_12 AC 106 ms
53,928 KB
testcase_13 AC 118 ms
54,040 KB
testcase_14 AC 103 ms
54,128 KB
testcase_15 AC 102 ms
52,940 KB
testcase_16 AC 106 ms
53,816 KB
testcase_17 AC 111 ms
54,304 KB
testcase_18 AC 113 ms
54,072 KB
testcase_19 AC 110 ms
53,916 KB
testcase_20 AC 108 ms
53,888 KB
testcase_21 AC 115 ms
53,896 KB
testcase_22 AC 108 ms
53,788 KB
testcase_23 AC 106 ms
53,836 KB
testcase_24 AC 112 ms
53,832 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 mod = 1000000007L;
        long ans = N*N%mod*N%mod;
        System.out.println(ans);
    }
}
0