結果

問題 No.863 計算量
ユーザー YamaKasa
提出日時 2019-10-05 13:30:07
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 236 bytes
コンパイル時間 1,393 ms
コンパイル使用メモリ 165,004 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-05 18:06:44
合計ジャッジ時間 2,098 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int main() {
    ll A, B;
    cin >> A >> B;
    ll t = B / (40 * A);
    if (t >= 10) {
        cout << "1\n"; 
    } else {
        cout << "2\n";
    }
  return 0;
}
0