結果
| 問題 | 
                            No.388 階段 (1)
                             | 
                    
| コンテスト | |
| ユーザー | 
                             torith
                         | 
                    
| 提出日時 | 2017-03-18 21:27:36 | 
| 言語 | C++11(廃止可能性あり)  (gcc 13.3.0)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 245 bytes | 
| コンパイル時間 | 1,145 ms | 
| コンパイル使用メモリ | 158,680 KB | 
| 実行使用メモリ | 6,948 KB | 
| 最終ジャッジ日時 | 2024-07-04 19:36:01 | 
| 合計ジャッジ時間 | 2,102 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge5 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | WA * 3 | 
| other | WA * 10 RE * 2 | 
ソースコード
/*
 * 388.cpp
 */
//include files
#include<bits/stdc++.h>
using namespace std;
//DEFINE CONSTANT
//DEFINE PROTOTYPE
int main(){
  int a,b;
  cin >> a >> b;
  if(b%a == 0) cout << b/a << endl;
  else cout << (int)b/a << endl;
  return 0;
}
            
            
            
        
            
torith