結果
| 問題 | No.388 階段 (1) | 
| コンテスト | |
| ユーザー |  ayu8823X | 
| 提出日時 | 2019-02-20 21:42:03 | 
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 3 ms / 2,000 ms | 
| コード長 | 149 bytes | 
| コンパイル時間 | 697 ms | 
| コンパイル使用メモリ | 54,672 KB | 
| 実行使用メモリ | 5,248 KB | 
| 最終ジャッジ日時 | 2024-11-07 17:52:55 | 
| 合計ジャッジ時間 | 1,460 ms | 
| ジャッジサーバーID (参考情報) | judge1 / judge3 | 
| 外部呼び出し有り | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 12 | 
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:8:15: warning: ignoring return value of ‘int system(const char*)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |         system("pause");
      |         ~~~~~~^~~~~~~~~
            
            ソースコード
#include <iostream>
using namespace std;
int main() {
	int s, f;
	cin >> s >> f;
	cout << s / f + 1 << endl;
	system("pause");
	return 0;
}
            
            
            
        