結果

問題 No.3026 Third Power Problem
ユーザー fal_rndfal_rnd
提出日時 2017-03-31 22:48:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 351 bytes
コンパイル時間 1,643 ms
コンパイル使用メモリ 74,072 KB
実行使用メモリ 41,708 KB
最終ジャッジ日時 2024-07-07 05:03:35
合計ジャッジ時間 5,036 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,320 KB
testcase_01 AC 105 ms
41,508 KB
testcase_02 AC 92 ms
41,168 KB
testcase_03 AC 108 ms
40,024 KB
testcase_04 AC 109 ms
41,324 KB
testcase_05 AC 98 ms
41,168 KB
testcase_06 AC 100 ms
41,292 KB
testcase_07 AC 106 ms
39,712 KB
testcase_08 AC 95 ms
41,032 KB
testcase_09 AC 111 ms
41,536 KB
testcase_10 AC 98 ms
41,096 KB
testcase_11 AC 107 ms
41,204 KB
testcase_12 AC 93 ms
41,340 KB
testcase_13 AC 105 ms
41,708 KB
testcase_14 AC 105 ms
41,384 KB
testcase_15 AC 107 ms
41,380 KB
testcase_16 AC 105 ms
41,372 KB
testcase_17 AC 109 ms
41,096 KB
testcase_18 AC 109 ms
41,356 KB
testcase_19 AC 98 ms
41,448 KB
testcase_20 AC 99 ms
41,356 KB
testcase_21 AC 109 ms
41,252 KB
testcase_22 AC 96 ms
41,232 KB
testcase_23 AC 107 ms
40,268 KB
testcase_24 AC 99 ms
41,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{

	static Scanner s=new Scanner(System.in);

	public static void main(String __[]){
		input();
		solve(s.nextInt());
	}

	private static void input(){
	}


	static int mod=1000000007;
	private static void solve(long in){
		long buf=in*in;
		buf%=mod;
		buf*=in;
		buf%=mod;
		System.out.println(buf);
	}
}
0