結果

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

ソースコード

diff #
raw source code

import math

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