結果

問題 No.8026 Third Power Problem
ユーザー data9824data9824
提出日時 2017-03-31 23:47:40
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 220 bytes
コンパイル時間 430 ms
コンパイル使用メモリ 54,020 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-07 06:35:30
合計ジャッジ時間 1,239 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

using namespace std;

int main() {
	long long n;
	cin >> n;
	long long result = n;
	result *= n;
	result %= 1000000007LL;
	result *= n;
	result %= 1000000007LL;
	cout << result << endl;
	return 0;
}
0