結果

問題 No.682 Average
ユーザー hkarintohkarinto
提出日時 2018-06-04 16:49:41
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 219 bytes
コンパイル時間 528 ms
コンパイル使用メモリ 55,664 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-30 09:41:59
合計ジャッジ時間 1,359 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdlib>
#include <iostream>

#include <typeinfo>
using namespace std;
int main(){
int a,b;
cin>>a>>b;
int count=0;
for(int i=a;i<b+1;i++){
    if ((a+b+i)%3==0){
        count+=1;
    }
}
cout<<count<<endl;
}
0