結果
問題 | No.46 はじめのn歩 |
ユーザー | sawa_tsuka |
提出日時 | 2017-08-15 20:56:32 |
言語 | C++11 (gcc 11.4.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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | WA | - |
testcase_09 | AC | 1 ms
5,248 KB |
ソースコード
#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); }