結果

問題 No.773 コンテスト
ユーザー 🍮かんプリン
提出日時 2019-02-12 16:16:22
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 289 bytes
コンパイル時間 1,460 ms
コンパイル使用メモリ 158,664 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-13 09:40:48
合計ジャッジ時間 2,382 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define ll long long int

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    int a,b,c=0;
    cin >> a>>b;
    if (a<=23&&23<=b) c++;
    if (a<=24&&24<=b) c++;
    if (a<=25&&25<=b) c++;
    cout << 3-c << endl;
    return 0;
}
0