結果
問題 | No.63 ポッキーゲーム |
ユーザー |
![]() |
提出日時 | 2015-07-07 04:40:34 |
言語 | C90 (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 5,000 ms |
コード長 | 164 bytes |
コンパイル時間 | 119 ms |
コンパイル使用メモリ | 20,352 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-24 04:50:47 |
合計ジャッジ時間 | 923 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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 k,l;int x;scanf("%d %d", &l, &k);x = (l/(2*k));if(l%(2*k) == 0){x--;}printf("%d\n", x*k);return 0;}