結果

問題 No.46 はじめのn歩
ユーザー sawa_tsukasawa_tsuka
提出日時 2017-08-15 20:56:32
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 308 bytes
コンパイル時間 1,670 ms
コンパイル使用メモリ 156,868 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-21 12:32:01
合計ジャッジ時間 2,170 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 2 ms
5,376 KB
testcase_08 WA -
testcase_09 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

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