結果

問題 No.773 コンテスト
ユーザー 👑 obakyan
提出日時 2019-03-22 09:09:56
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 302 bytes
コンパイル時間 950 ms
コンパイル使用メモリ 58,844 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-19 02:17:11
合計ジャッジ時間 1,834 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdlib>
#include <string>
#include <vector>
#include <algorithm>

int main()
{
    int a, b;
    std::cin >> a >> b;
    int c = 0;
    if(23 < a || b < 23) c++;
    if(24 < a || b < 24) c++;
    if(25 < a || b < 25) c++;
    std::cout << c << std::endl;
    return 0;
}
0