Submission #180102


Source Code Expand

#include <bits/stdc++.h>

#define reps(v, f, l) for (int v = (f), v##_ = (l); v < v##_; ++v)
#define rep(v, n) reps(v, 0, n)
#define lep(v, n) reps(v, 1, n + 1)
#define rreps(v, f, l) for (int v = (l), v##_ = (f); v >= v##_; --v)
#define rrep(v, n) rreps(v, 0, n - 1)
#define rlep(v, n) rreps(v, 1, n)
#define show_a(a, size) rep(a##_it, size) std::cout << a[a##_it] << " \n"[a##_it == a##_it_ - 1];
#define show_v(v) show_a(v, v.size())
#define debug(x) std::cerr << #x << " = " << (x) << "\n";

using namespace std;

typedef long long int lint;

static inline int in(){ int x; scanf("%d", &x); return x; }
static inline lint inl(){ lint x; scanf("%lld", &x); return x; }

int main()
{
  int total = 0;
  rep(i, in()){
    int a = in();
    while (a % 2 == 0 || a % 3 == 2){
      total++;
      a--;
    }
  }
  cout << total << endl;
  return 0;
}

Submission Info

Submission Time
Task B - 花占い
User orisano
Language C++ (G++ 4.6.4)
Score 100
Code Size 883 Byte
Status AC
Exec Time 22 ms
Memory 928 KB

Compile Error

./Main.cpp: In function ‘int in()’:
./Main.cpp:17:47: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]

Judge Result

Set Name All
Score / Max Score 100 / 100
Status
AC × 18
Set Name Test Cases
All 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 20 ms 796 KB
sample_02.txt AC 21 ms 916 KB
test_1.txt AC 21 ms 800 KB
test_112358.txt AC 20 ms 928 KB
test_1379137913.txt AC 20 ms 800 KB
test_1414213562.txt AC 21 ms 804 KB
test_1732151817.txt AC 21 ms 800 KB
test_2.txt AC 22 ms 804 KB
test_2236167977.txt AC 21 ms 924 KB
test_2645751311.txt AC 21 ms 800 KB
test_3.txt AC 21 ms 796 KB
test_3141592653.txt AC 21 ms 804 KB
test_4.txt AC 21 ms 804 KB
test_5.txt AC 21 ms 808 KB
test_6.txt AC 21 ms 804 KB
test_6666666666.txt AC 21 ms 800 KB
test_7.txt AC 21 ms 792 KB
test_73.txt AC 21 ms 804 KB
test_8.txt AC 20 ms 800 KB
test_9.txt AC 21 ms 668 KB