結果

問題 No.557 点対称
コンテスト
ユーザー yamanchu3776
提出日時 2017-08-22 13:35:39
言語 PyPy2
(7.3.15)
結果
WA  
実行時間 -
コード長 107 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 77,636 KB
最終ジャッジ日時 2025-12-04 00:31:26
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 1 TLE * 1 -- * 28
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import math

num = int( raw_input() )
a = 5**(num/2 -1)
if num %2 == 1:
	a = a * 4
a = a%1000000007
print a
0