結果

問題 No.63 ポッキーゲーム
ユーザー kjnho
提出日時 2017-02-24 20:46:42
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 192 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 12,032 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2025-01-02 22:21:19
合計ジャッジ時間 1,730 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    L, K = map(int, input().split())

    print(L//(2*K) + K)

if __name__ == "__main__":  # {{{
    try:
        import test
        test.test()
    except:
        main()  # }}}
0