結果

問題 No.557 点対称
ユーザー mitsuomitsuo
提出日時 2017-12-31 22:56:14
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 619 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 118,524 KB
最終ジャッジ日時 2024-12-21 16:27:35
合計ジャッジ時間 39,180 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
65,592 KB
testcase_01 TLE -
testcase_02 AC 40 ms
60,452 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 42 ms
65,160 KB
testcase_06 AC 42 ms
116,676 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 42 ms
65,080 KB
testcase_10 TLE -
testcase_11 AC 40 ms
59,072 KB
testcase_12 AC 44 ms
117,032 KB
testcase_13 AC 45 ms
64,828 KB
testcase_14 AC 46 ms
116,360 KB
testcase_15 AC 1,991 ms
64,888 KB
testcase_16 TLE -
testcase_17 AC 40 ms
59,152 KB
testcase_18 AC 53 ms
117,540 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 45 ms
58,560 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 39 ms
52,076 KB
testcase_26 AC 39 ms
52,804 KB
testcase_27 AC 38 ms
52,468 KB
testcase_28 AC 41 ms
51,756 KB
testcase_29 AC 39 ms
110,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


def solve(N):
    if N == 1: return 2
    if N == 2: return 4
    if N % 2 == 0:
        k = N // 2
        ans = 1
        for i in range(0, k):
            if i == 0:
               ans *= 4
            else:
               ans *= 5
            ans %= 1000000007
        return ans
    else :
        k = (N - 1) // 2
        ans = 1
        for i in range(0, k):
            if i == 0:
               ans *= 4
            else:
               ans *= 5
            ans %= 1000000007
        ans *= 3
        ans %= 1000000007
        return ans

if __name__ == '__main__':
    N = (int)(input())
    print(solve(N))
0