結果

問題 No.557 点対称
ユーザー mitsuomitsuo
提出日時 2017-12-31 22:59:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 341 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 31,704 KB
最終ジャッジ日時 2024-12-21 16:29:08
合計ジャッジ時間 41,976 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
17,572 KB
testcase_01 TLE -
testcase_02 AC 27 ms
17,572 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 27 ms
29,336 KB
testcase_06 AC 26 ms
17,696 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 32 ms
17,696 KB
testcase_10 TLE -
testcase_11 AC 28 ms
28,900 KB
testcase_12 AC 65 ms
17,956 KB
testcase_13 AC 76 ms
18,084 KB
testcase_14 AC 26 ms
17,700 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 28 ms
28,156 KB
testcase_18 AC 913 ms
20,908 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 165 ms
18,472 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 27 ms
10,752 KB
testcase_26 AC 26 ms
10,752 KB
testcase_27 AC 25 ms
10,752 KB
testcase_28 AC 25 ms
10,752 KB
testcase_29 AC 25 ms
28,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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