結果

問題 No.46 はじめのn歩
ユーザー sawa_tsuka
提出日時 2017-08-15 20:56:32
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 308 bytes
コンパイル時間 1,452 ms
コンパイル使用メモリ 156,900 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-13 10:59:50
合計ジャッジ時間 1,792 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 4 WA * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
#define in(n) cin>>n
#define REP(sfx,n) for(sfx=0;sfx<n;sfx++)
#define FOR(sfx,arr) for(auto &sfx:arr)
#define ALLITR(arr) (arr.begin()),(ar.end())

int main(){
	int a,b;
	in(a);in(b);
	cout<<(b/a+b%a?1:0);
}
0