結果

問題 No.111 あばばばば
ユーザー mokraimokrai
提出日時 2017-11-17 12:53:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 120 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 10,768 KB
実行使用メモリ 236,064 KB
最終ジャッジ日時 2023-08-16 19:08:10
合計ジャッジ時間 5,731 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,772 KB
testcase_01 AC 15 ms
7,908 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