結果
| 問題 | No.46 はじめのn歩 |
| コンテスト | |
| ユーザー |
ayanamizuta
|
| 提出日時 | 2017-06-30 17:12:22 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 139 bytes |
| コンパイル時間 | 125 ms |
| コンパイル使用メモリ | 22,144 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-10-04 18:36:20 |
| 合計ジャッジ時間 | 2,157 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 10 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:4:10: warning: format ‘%d’ expects argument of type ‘int*’, but argument 2 has type ‘int’ [-Wformat=]
4 | scanf("%d %d",a,b);
| ~^ ~
| | |
| int* int
main.cpp:4:13: warning: format ‘%d’ expects argument of type ‘int*’, but argument 3 has type ‘int’ [-Wformat=]
4 | scanf("%d %d",a,b);
| ~^ ~
| | |
| int* int
main.cpp:4:7: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
4 | scanf("%d %d",a,b);
| ~~~~~^~~~~~~~~~~~~
main.cpp:4:7: warning: ‘a’ is used uninitialized [-Wuninitialized]
4 | scanf("%d %d",a,b);
| ~~~~~^~~~~~~~~~~~~
main.cpp:4:7: warning: ‘b’ is used uninitialized [-Wuninitialized]
ソースコード
#include <stdio.h>
int main(){
int a,b;
scanf("%d %d",a,b);
if(b % a == 0)
printf("%d",b/a);
else
printf("%d",b/a +1);
return 0;
}
ayanamizuta