結果

問題 No.3026 Third Power Problem
ユーザー ぴろずぴろず
提出日時 2017-03-31 23:35:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 314 bytes
コンパイル時間 2,150 ms
コンパイル使用メモリ 77,636 KB
実行使用メモリ 54,240 KB
最終ジャッジ日時 2024-07-07 06:10:04
合計ジャッジ時間 5,016 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
52,552 KB
testcase_01 AC 103 ms
54,008 KB
testcase_02 AC 111 ms
53,952 KB
testcase_03 AC 105 ms
52,696 KB
testcase_04 AC 106 ms
52,964 KB
testcase_05 AC 113 ms
54,132 KB
testcase_06 AC 109 ms
53,776 KB
testcase_07 AC 96 ms
53,872 KB
testcase_08 AC 106 ms
54,060 KB
testcase_09 AC 106 ms
53,892 KB
testcase_10 AC 98 ms
52,712 KB
testcase_11 AC 105 ms
54,020 KB
testcase_12 AC 98 ms
52,704 KB
testcase_13 AC 106 ms
53,944 KB
testcase_14 AC 105 ms
53,952 KB
testcase_15 AC 99 ms
52,820 KB
testcase_16 AC 110 ms
54,240 KB
testcase_17 AC 103 ms
53,940 KB
testcase_18 AC 106 ms
53,952 KB
testcase_19 AC 105 ms
53,912 KB
testcase_20 AC 97 ms
52,996 KB
testcase_21 AC 106 ms
53,936 KB
testcase_22 AC 104 ms
53,712 KB
testcase_23 AC 104 ms
53,676 KB
testcase_24 AC 92 ms
52,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no3026;

import java.util.Scanner;

public class Main {

	public static long MOD = 1000000007;
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		System.out.println(cube(n));
	}
	public static long cube(long n) {
		return n * n % MOD * n % MOD;
	}
}
0