結果

問題 No.557 点対称
ユーザー shoooooshooooo
提出日時 2019-11-28 11:17:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 138 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 32,268 KB
最終ジャッジ日時 2024-11-17 14:36:46
合計ジャッジ時間 41,550 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
15,872 KB
testcase_01 TLE -
testcase_02 AC 24 ms
15,744 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 26 ms
17,444 KB
testcase_06 AC 24 ms
15,744 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 29 ms
16,000 KB
testcase_10 TLE -
testcase_11 AC 24 ms
15,872 KB
testcase_12 AC 66 ms
28,884 KB
testcase_13 AC 68 ms
16,384 KB
testcase_14 AC 23 ms
29,420 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 25 ms
15,744 KB
testcase_18 AC 841 ms
32,268 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 145 ms
30,220 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 24 ms
10,624 KB
testcase_26 AC 23 ms
10,496 KB
testcase_27 AC 23 ms
10,624 KB
testcase_28 AC 28 ms
10,368 KB
testcase_29 AC 23 ms
29,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
mod=10**9+7
if N==1:
  print(2)
else:
  if N%2==0:
    print((4*5**(N//2-1))%mod)
  else:
    print((4*5**(N//2-1)*3)%mod)
0