結果

問題 No.557 点対称
ユーザー ああいいああいい
提出日時 2022-03-08 14:14:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 233 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 54,028 KB
最終ジャッジ日時 2024-07-23 13:55:03
合計ジャッジ時間 2,431 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 37 ms
52,524 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 37 ms
52,460 KB
testcase_09 WA -
testcase_10 AC 38 ms
52,008 KB
testcase_11 AC 37 ms
52,752 KB
testcase_12 WA -
testcase_13 AC 37 ms
52,956 KB
testcase_14 AC 37 ms
52,324 KB
testcase_15 AC 37 ms
53,008 KB
testcase_16 AC 37 ms
52,324 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 37 ms
53,244 KB
testcase_20 AC 36 ms
52,132 KB
testcase_21 AC 37 ms
52,152 KB
testcase_22 AC 36 ms
52,704 KB
testcase_23 AC 36 ms
52,684 KB
testcase_24 WA -
testcase_25 AC 37 ms
53,992 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 38 ms
53,220 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

P = 10 ** 9 + 7
N = int(input())
import sys

if N <= 2:
    print(4)
    exit()
    
if N % 2 == 0:
    u = N // 2
    ans = 4 * pow(5,u-1,P) % P
    print(ans)
else:
    u = (N + 1) // 2
    ans = 4 * pow(5,u-1,P) % P
    print(ans)
0