結果
| 問題 |
No.804 野菜が苦手
|
| コンテスト | |
| ユーザー |
tadahito0621
|
| 提出日時 | 2019-04-04 08:51:27 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 182 bytes |
| コンパイル時間 | 433 ms |
| コンパイル使用メモリ | 52,568 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-12-24 16:01:56 |
| 合計ジャッジ時間 | 1,114 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 7 WA * 11 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:6:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
6 | scanf("%d %d %d %d", &A, &B, &C, &D);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include<iostream>
using namespace std;
int main()
{
int A, B, C, D;
scanf("%d %d %d %d", &A, &B, &C, &D);
int count = D/(C+1);
printf("%d\n", count );
return 0;
}
tadahito0621