結果
| 問題 |
No.773 コンテスト
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-08-20 02:30:17 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 257 bytes |
| コンパイル時間 | 739 ms |
| コンパイル使用メモリ | 64,328 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-10-12 14:24:37 |
| 合計ジャッジ時間 | 1,758 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 13 WA * 8 |
ソースコード
#include <iostream>
using namespace std;
int main(){
int a,b;
cin>>a>>b;
if((a<=25 and b>=25) or (a>25 and b<=31)) cout<<"0"<<endl;
else if(a<=24 and b>=24) cout<<"1"<<endl;
else if(a<=23 and b>=23) cout<<"2"<<endl;
else cout<<"3"<<endl;
return 0;
}