結果

問題 No.63 ポッキーゲーム
ユーザー Beginer_
提出日時 2025-06-02 17:27:25
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 145 bytes
コンパイル時間 416 ms
コンパイル使用メモリ 11,904 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2025-06-02 17:27:28
合計ジャッジ時間 2,139 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 15 WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

L, K= map(int, input().split())
count= L / (K*2)

if count <= 1:
	U_length= 0
else:
	T_count= int(count)
	U_length= K * T_count
	
print(U_length)
0