結果
問題 | No.63 ポッキーゲーム |
ユーザー |
![]() |
提出日時 | 2016-04-14 17:29:00 |
言語 | C90 (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 172 ms / 5,000 ms |
コード長 | 161 bytes |
コンパイル時間 | 150 ms |
コンパイル使用メモリ | 20,352 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-12-24 05:05:29 |
合計ジャッジ時間 | 1,466 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 22 |
コンパイルメッセージ
main.c: In function ‘main’: main.c:6:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 6 | scanf("%d %d", &l, &k); | ^~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h>int main(void){int l, k, i=0;scanf("%d %d", &l, &k);while (l - (k*2) > 0) {l -= k*2;i++;}printf("%d\n", k*i);return 0;}