結果

問題 No.1027 U+1F4A0
ユーザー betrue12betrue12
提出日時 2020-04-17 21:22:58
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 4 ms / 2,000 ms
コード長 348 bytes
コンパイル時間 3,632 ms
コンパイル使用メモリ 191,040 KB
最終ジャッジ日時 2025-01-09 19:42:21
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    int D1, D2;
    cin >> D1 >> D2;
    int ans = 0;
    if(2*D1 < D2){
        ans = 0;
    }else if(2*D1 == D2){
        ans = 4;
    }else if(D1 < D2){
        ans = 8;
    }else if(D1 == D2){
        ans = 4;
    }else{
        ans = 0;
    }
    cout << ans << endl;
    return 0;
}
0