結果

問題 No.557 点対称
ユーザー mitsuomitsuo
提出日時 2017-12-31 22:55:28
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 619 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 12,160 KB
実行使用メモリ 24,000 KB
最終ジャッジ日時 2024-12-21 16:26:52
合計ジャッジ時間 41,983 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
17,444 KB
testcase_01 TLE -
testcase_02 AC 30 ms
17,444 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 37 ms
17,440 KB
testcase_06 AC 35 ms
21,120 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 48 ms
17,188 KB
testcase_10 TLE -
testcase_11 AC 30 ms
17,696 KB
testcase_12 AC 89 ms
17,444 KB
testcase_13 AC 97 ms
17,696 KB
testcase_14 AC 34 ms
17,440 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 32 ms
17,440 KB
testcase_18 AC 459 ms
21,120 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 159 ms
21,120 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 30 ms
10,496 KB
testcase_26 AC 30 ms
10,496 KB
testcase_27 AC 30 ms
10,624 KB
testcase_28 AC 31 ms
10,624 KB
testcase_29 AC 32 ms
17,316 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