結果

問題 No.557 点対称
ユーザー mitsuomitsuo
提出日時 2017-12-31 23:12:58
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 304 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 114,432 KB
最終ジャッジ日時 2024-12-21 16:30:33
合計ジャッジ時間 39,333 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
62,720 KB
testcase_01 TLE -
testcase_02 AC 45 ms
56,832 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 48 ms
62,208 KB
testcase_06 AC 47 ms
113,920 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 50 ms
62,208 KB
testcase_10 TLE -
testcase_11 AC 45 ms
57,216 KB
testcase_12 AC 50 ms
114,432 KB
testcase_13 AC 50 ms
62,464 KB
testcase_14 AC 48 ms
113,920 KB
testcase_15 AC 1,980 ms
62,208 KB
testcase_16 TLE -
testcase_17 AC 45 ms
57,216 KB
testcase_18 AC 62 ms
114,048 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 52 ms
56,960 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 45 ms
51,712 KB
testcase_26 AC 47 ms
51,840 KB
testcase_27 AC 45 ms
51,584 KB
testcase_28 AC 47 ms
52,096 KB
testcase_29 AC 46 ms
108,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(N):
    if N == 1: return 2
    if N % 2 == 0:
        k = N // 2
        ans = 4
    else:
        k = (N - 1) // 2
        ans = 12

    for _ in range(0, k - 1):
        ans *= 5
        ans %= 1000000007

    return ans

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