結果

問題 No.111 あばばばば
ユーザー mokraimokrai
提出日時 2017-11-17 12:53:41
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 120 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 238,228 KB
最終ジャッジ日時 2024-11-25 08:50:09
合計ジャッジ時間 5,815 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

def main():
    L = int(input())
    ans = 2 ** int((L - 1 ) / 2)
    print(ans)

if __name__ == '__main__':
    main()
0