結果

問題 No.1027 U+1F4A0
ユーザー yutas
提出日時 2020-04-17 21:21:54
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 766 bytes
コンパイル時間 700 ms
コンパイル使用メモリ 94,188 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-03 10:48:16
合計ジャッジ時間 1,685 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 13 WA * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

//#include <bits/stdc++.h>
#include <iostream>
#include <fstream>
#include <vector>
#include <string>
#include <cmath>
#include <algorithm>
#include <map>
#include <iomanip>
#include <stdlib.h>
#include <stdio.h>
#include <queue>
#include <deque>
#include <set>
#include <stack>
#include <time.h>
 
using namespace std;
 
typedef long long ll;
typedef long double ld;
typedef pair<int, int> Pii;
typedef pair<int, ll> Pil;
typedef pair<ll, ll> Pll;
typedef pair<ll, int> Pli;
 
const ll MOD = 1e9 + 7;
const ll MOD2 = 998244353;
const ll INF = 1ll << 60;
const double PI = 2 * asin(1);

int main(){
  int C, D; cin >> C >> D;
  D/=2;
  if (C == D){
    cout << 4 << endl;
  }else if (C > D){
    cout << 8 << endl;
  }else{
    cout << 0 << endl;
  }

  return 0;
}
0