結果
問題 | No.682 Average |
ユーザー | 西尾 |
提出日時 | 2018-08-22 16:05:13 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 313 bytes |
コンパイル時間 | 1,405 ms |
コンパイル使用メモリ | 165,576 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-12-24 05:05:36 |
合計ジャッジ時間 | 2,110 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 13 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int i; int A; int B; int iSum; int iCnt; ios::sync_with_stdio( false ); cin.tie( 0 ); cin >> A; cin >> B; iSum = A + B; iCnt = 0; for( i = A; i <= B; i++ ) { if( ( iSum + i ) % 3 == 0 ) iCnt++; } cout << iCnt << endl; return 0; }