結果

問題 No.682 Average
ユーザー mlpj56dmlpj56d
提出日時 2018-05-11 22:44:52
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 234 bytes
コンパイル時間 407 ms
コンパイル使用メモリ 55,712 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-28 08:51:25
合計ジャッジ時間 1,042 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
#include<iostream>
using namespace std;

int A,B;
int main (){
    cin >> A >> B;
    int cnt = 0;
    for(int i=A; i<B+1; i++){
        if((A + B + i) % 3 == 0) cnt++;
    }
    cout << cnt << endl;
    return 0;
}
0