結果

問題 No.863 計算量
ユーザー ut0sut0s
提出日時 2019-08-16 21:23:53
言語 C++11
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 443 bytes
コンパイル時間 1,201 ms
コンパイル使用メモリ 159,800 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-22 14:54:48
合計ジャッジ時間 1,822 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 10 WA * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
  @file main.cpp
  @title No.863 計算量
  @url https://yukicoder.me/problems/no/863
**/

#include <bits/stdc++.h>
using namespace std;

typedef long long LL;
#define ALL(obj) (obj).begin(), (obj).end()
#define REP(i, N) for (int i = 0; i < (N); ++i)

int main() {
  LL A, B;
  cin >> A >> B;

  int n1 = 5000;
  int n2 = 200000;

  if (A / n1 == B / n2) {
    cout << "1" << endl;
  } else {
    cout << "2" << endl;
  }

  return 0;
}
0