結果

問題 No.8026 Third Power Problem
ユーザー fal_rndfal_rnd
提出日時 2017-03-31 22:48:02
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

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