結果

問題 No.111 あばばばば
ユーザー rocoderrocoder
提出日時 2017-05-14 06:09:08
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
WA  
実行時間 -
コード長 78 bytes
コンパイル時間 857 ms
コンパイル使用メモリ 10,528 KB
実行使用メモリ 12,692 KB
最終ジャッジ日時 2023-10-14 10:21:18
合計ジャッジ時間 7,374 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,964 KB
testcase_01 WA -
testcase_02 RE -
testcase_03 TLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
N//=2
H=1
for i in range (N):
    H*=3
H-=1
H/=2
print (int(H))
0