結果
問題 |
No.63 ポッキーゲーム
|
ユーザー |
![]() |
提出日時 | 2017-06-16 15:38:38 |
言語 | C (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 161 bytes |
コンパイル時間 | 209 ms |
コンパイル使用メモリ | 27,776 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-01 06:45:00 |
合計ジャッジ時間 | 757 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 15 WA * 7 |
ソースコード
#include <stdio.h> int main(){ int L,K; scanf("%d",&L); scanf("%d",&K); if(L%(K*2)==0) printf("0\n"); else printf("%d\n",((L/(2*K))*K)); return 0; }