結果
問題 |
No.773 コンテスト
|
ユーザー |
![]() |
提出日時 | 2019-09-02 18:39:22 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 237 bytes |
コンパイル時間 | 1,421 ms |
コンパイル使用メモリ | 164,816 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-16 07:40:59 |
合計ジャッジ時間 | 2,218 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | WA * 21 |
ソースコード
#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 ; }