結果
| 問題 |
No.63 ポッキーゲーム
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-11-10 00:40:44 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 206 bytes |
| コンパイル時間 | 150 ms |
| コンパイル使用メモリ | 27,904 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-07-23 05:28:39 |
| 合計ジャッジ時間 | 951 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 12 WA * 10 |
ソースコード
#include <stdio.h>
int main(void) {
float K, L, j, total, i;
int d, e;
scanf("%f%f",&L,&K);
i = L/(2*K);
if (i==1){
}
else{
d = (int)i;
e = (int)K;
printf("%d\n", d*e);
}
return 0;
}