結果

問題 No.3026 Third Power Problem
ユーザー shinwisteriashinwisteria
提出日時 2017-03-31 23:08:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 355 bytes
コンパイル時間 3,213 ms
コンパイル使用メモリ 74,244 KB
実行使用メモリ 54,232 KB
最終ジャッジ日時 2024-07-07 05:20:30
合計ジャッジ時間 7,665 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,088 KB
testcase_01 AC 135 ms
53,972 KB
testcase_02 AC 122 ms
53,800 KB
testcase_03 AC 110 ms
53,172 KB
testcase_04 AC 124 ms
54,044 KB
testcase_05 AC 127 ms
54,084 KB
testcase_06 AC 139 ms
53,420 KB
testcase_07 AC 127 ms
54,156 KB
testcase_08 AC 128 ms
54,096 KB
testcase_09 AC 129 ms
54,188 KB
testcase_10 AC 126 ms
54,012 KB
testcase_11 AC 127 ms
53,984 KB
testcase_12 AC 127 ms
54,076 KB
testcase_13 AC 132 ms
54,076 KB
testcase_14 AC 125 ms
54,024 KB
testcase_15 AC 133 ms
54,084 KB
testcase_16 AC 127 ms
54,120 KB
testcase_17 AC 112 ms
52,820 KB
testcase_18 AC 122 ms
54,144 KB
testcase_19 AC 126 ms
53,920 KB
testcase_20 AC 123 ms
54,148 KB
testcase_21 AC 127 ms
54,088 KB
testcase_22 AC 123 ms
53,956 KB
testcase_23 AC 125 ms
54,232 KB
testcase_24 AC 120 ms
54,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class ThirdPowerProblem {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner s = new Scanner(System.in);
		int N = s.nextInt();
		s.close();
		int t = (int)Math.pow(10, 9)+ 7;
		long r = N % t;
		r = (r * N) % t;
		r = (r * N) % t;
		System.out.println(r);

	}

}
0