結果

問題 No.557 点対称
ユーザー mitsuomitsuo
提出日時 2017-12-31 22:58:51
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 341 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 248,832 KB
最終ジャッジ日時 2024-12-21 16:28:22
合計ジャッジ時間 41,825 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
57,344 KB
testcase_01 TLE -
testcase_02 AC 36 ms
56,704 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 37 ms
57,600 KB
testcase_06 AC 34 ms
242,816 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 36 ms
59,392 KB
testcase_10 TLE -
testcase_11 AC 35 ms
56,704 KB
testcase_12 AC 56 ms
248,832 KB
testcase_13 AC 59 ms
78,080 KB
testcase_14 AC 32 ms
56,704 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 33 ms
59,164 KB
testcase_18 AC 433 ms
94,080 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 96 ms
77,696 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 36 ms
51,712 KB
testcase_26 AC 33 ms
51,840 KB
testcase_27 AC 35 ms
51,968 KB
testcase_28 AC 33 ms
51,712 KB
testcase_29 AC 36 ms
140,288 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