結果
問題 |
No.46 はじめのn歩
|
ユーザー |
![]() |
提出日時 | 2018-07-11 02:38:41 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 5,000 ms |
コード長 | 153 bytes |
コンパイル時間 | 319 ms |
コンパイル使用メモリ | 22,528 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-14 08:37:05 |
合計ジャッジ時間 | 755 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge6 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:4:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 4 | scanf("%d%d", &A, &B); | ~~~~~^~~~~~~~~~~~~~~~
ソースコード
#include <cstdio> int main () { int A, B; scanf("%d%d", &A, &B); if (B % A == 0) printf("%d\n", B / A); else printf("%d\n", B / A + 1); }