Submission #1725855


Source Code Expand

#include <algorithm>
#include <bitset>
#include <complex>
#include <deque>
#include <exception>
#include <fstream>
#include <functional>
#include <iomanip>
#include <ios>
#include <iosfwd>
#include <iostream>
#include <istream>
#include <iterator>
#include <limits>
#include <list>
#include <locale>
#include <map>
#include <memory>
#include <new>
#include <numeric>
#include <ostream>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <stdexcept>
#include <streambuf>
#include <string>
#include <typeinfo>
#include <utility>
#include <valarray>
#include <vector>

#define REP(i, m, n) for(int i=int(m);i<int(n);i++)
#define EACH(i, c) for (auto &(i): c)
#define all(c) begin(c),end(c)
#define EXIST(s, e) ((s).find(e)!=(s).end())
#define SORT(c) sort(begin(c),end(c))
#define pb emplace_back
#define MP make_pair
#define SZ(a) int((a).size())

//#define LOCAL 0
//#ifdef LOCAL
//#define DEBUG(s) cout << (s) << endl
//#define dump(x)  cerr << #x << " = " << (x) << endl
//#define BR cout << endl;
//#else
//#define DEBUG(s) do{}while(0)
//#define dump(x) do{}while(0)
//#define BR
//#endif


//改造
typedef long long int ll;
using namespace std;
#define INF (1 << 20)
#define INFl (ll)5e15
#define DEBUG 0 //デバッグする時1にしてね

//ここから編集する


int main() {
    int N;
    cin >> N;
    int ans = 0;
    REP(i,0,N){
        int tmp;
        cin >> tmp;
        if(tmp % 6 == 0){
            ans += 3;
        }
        if(tmp % 6 == 1){
            ans += 0;
        }
        if(tmp % 6 == 2){
            ans += 1;
        }
        if(tmp % 6 > 2){
            ans += (tmp % 6 - 3);
        }
    }
    cout << ans << endl;
    return 0;
}

Submission Info

Submission Time
Task B - 花占い
User homesentinel
Language C++14 (GCC 5.4.1)
Score 100
Code Size 1788 Byte
Status AC
Exec Time 2 ms
Memory 256 KB

Judge Result

Set Name All
Score / Max Score 100 / 100
Status
AC × 20
Set Name Test Cases
All sample_01.txt, sample_02.txt, test_1.txt, test_112358.txt, test_1379137913.txt, test_1414213562.txt, test_1732151817.txt, test_2.txt, test_2236167977.txt, test_2645751311.txt, test_3.txt, test_3141592653.txt, test_4.txt, test_5.txt, test_6.txt, test_6666666666.txt, test_7.txt, test_73.txt, test_8.txt, test_9.txt
Case Name Status Exec Time Memory
sample_01.txt AC 1 ms 256 KB
sample_02.txt AC 1 ms 256 KB
test_1.txt AC 1 ms 256 KB
test_112358.txt AC 1 ms 256 KB
test_1379137913.txt AC 1 ms 256 KB
test_1414213562.txt AC 1 ms 256 KB
test_1732151817.txt AC 1 ms 256 KB
test_2.txt AC 1 ms 256 KB
test_2236167977.txt AC 1 ms 256 KB
test_2645751311.txt AC 1 ms 256 KB
test_3.txt AC 1 ms 256 KB
test_3141592653.txt AC 1 ms 256 KB
test_4.txt AC 1 ms 256 KB
test_5.txt AC 1 ms 256 KB
test_6.txt AC 1 ms 256 KB
test_6666666666.txt AC 1 ms 256 KB
test_7.txt AC 2 ms 256 KB
test_73.txt AC 1 ms 256 KB
test_8.txt AC 2 ms 256 KB
test_9.txt AC 1 ms 256 KB