結果

問題 No.773 コンテスト
ユーザー sleepy1873
提出日時 2019-09-02 18:41:24
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 237 bytes
コンパイル時間 1,962 ms
コンパイル使用メモリ 164,664 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-16 07:44:31
合計ジャッジ時間 2,426 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define r(i,n) for(int i = 0; i<n; i++)
using namespace std;

int main(){
  int a, b, count=3;
  cin >> a >> b;
  if(a<=23&&23<=b)count--;
  if(a<=24&&24<=b)count--;
  if(a<=25&&25<=b)count--;
  cout << count ;
}
0