結果
問題 | No.46 はじめのn歩 |
ユーザー |
![]() |
提出日時 | 2017-04-03 21:58:23 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 271 bytes |
コンパイル時間 | 1,666 ms |
コンパイル使用メモリ | 158,560 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-08 05:33:47 |
合計ジャッジ時間 | 2,182 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:10:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 10 | scanf("%d%d", &a, &b); | ~~~~~^~~~~~~~~~~~~~~~
ソースコード
#include <bits/stdc++.h> #define FOR(i,a,b) for (int i=(a);i<(b);i++) #define REP(i,n) for (int i=0;i<(n);i++) #define ALL(a) (a).begin(),(a).end() #define all(a) (a).begin(),(a).end() int main(){ int a, b; scanf("%d%d", &a, &b); printf("%d\n", b%a? b/a + 1: b/a); }