結果

問題 No.63 ポッキーゲーム
ユーザー Ygg13_iRO
提出日時 2014-11-12 00:19:42
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 151 bytes
コンパイル時間 601 ms
コンパイル使用メモリ 58,980 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-31 09:53:23
合計ジャッジ時間 1,305 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 11 WA * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cmath>
using namespace std;

int main(){

	long int L, K;

	cin >> L >> K;


		cout << (L-1) / 2 << endl;

}
0