結果
| 問題 | 
                            No.863 計算量
                             | 
                    
| コンテスト | |
| ユーザー | 
                             integer
                         | 
                    
| 提出日時 | 2019-08-21 16:17:35 | 
| 言語 | C++17  (gcc 13.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 2 ms / 1,000 ms | 
| コード長 | 234 bytes | 
| コンパイル時間 | 1,974 ms | 
| コンパイル使用メモリ | 192,644 KB | 
| 最終ジャッジ日時 | 2025-01-07 14:34:21 | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge5 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 13 | 
ソースコード
#include <bits/stdc++.h>
#define rep(i,n) for (int i =0;i < (n); ++i)
using namespace std;
typedef long long ll;
int main() {
    int a,b;
    cin>>a>>b;
    int ans;
    ans =  b/a>=1600 ? 2 : 1;
    cout<<ans<<endl;
    return 0;
}
            
            
            
        
            
integer