結果

問題 No.388 階段 (1)
ユーザー mono1120
提出日時 2018-06-29 00:48:31
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 117 bytes
コンパイル時間 1,329 ms
コンパイル使用メモリ 157,076 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-30 23:40:05
合計ジャッジ時間 1,979 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int a,s,f;

int main(){
    cin>>s>>f;
    a = s/f +1;
    return 0;
}
0