結果

問題 No.773 コンテスト
ユーザー sleepy1873
提出日時 2019-09-02 18:38:41
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 244 bytes
コンパイル時間 1,526 ms
コンパイル使用メモリ 165,248 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-16 07:39:57
合計ジャッジ時間 2,490 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 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=0;
  cin >> a >> b;
  if(a<=23&&23<=b)count++;
  if(a<=24&&24<=b)count++;
  if(a<=25&&25<=b)count++;
  cout << count << endl;
}
0