結果

問題 No.773 コンテスト
ユーザー 譁 ュ怜喧縺æ–‡å—åŒ
提出日時 2020-08-20 02:36:07
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 206 bytes
コンパイル時間 588 ms
コンパイル使用メモリ 63,148 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-12 14:58:50
合計ジャッジ時間 1,287 ms
ジャッジサーバーID
(参考情報)
judge5 / judge
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 9 WA * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
int main(){
	int a,b,ans=3;
	cin>>a>>b;
	if(a<=23 and b>=23) ans--;
	else if(a<=24 and b>=24) ans--;
	else if(a<=25 and b>=25) ans--;
	cout<<ans<<endl;
	return 0;
}
0