Submission # 108446
提出されたコード
#include <cstdlib>
#include <cmath>
#include <climits>
#include <cfloat>
#include <map>
#include <utility>
#include <set>
#include <iostream>
#include <memory>
#include <string>
#include <vector>
#include <algorithm>
#include <functional>
#include <sstream>
#include <deque>
#include <complex>
#include <stack>
#include <queue>
#include <cstdio>
#include <cctype>
#include <cstring>
#include <ctime>
#include <iterator>
#include <bitset>
#include <numeric>
#include <list>
#include <iomanip>
#include <cassert>
#if __cplusplus >= 201103L
#include <array>
#include <tuple>
#include <initializer_list>
#include <unordered_set>
#include <unordered_map>
#include <forward_list>
using namespace std;
#define cauto const auto&
#define ALL(v) begin(v),end(v)
#else
#define ALL(v) (v).begin(),(v).end()
#endif
namespace{
typedef long long LL;
typedef pair<int,int> pii;
typedef pair<LL,LL> pll;
typedef vector<int> vint;
typedef vector<vector<int> > vvint;
typedef vector<long long> vll, vLL;
typedef vector<vector<long long> > vvll, vvLL;
#define VV(T) vector<vector< T > >
template <class T>
void initvv(vector<vector<T> > &v, int a, int b, const T &t = T()){
v.assign(a, vector<T>(b, t));
}
template <class T> inline T &chmin(T &x, const T &y){ return x = min(x, y); }
template <class T> inline T &chmax(T &x, const T &y){ return x = max(x, y); }
template <class F, class T>
void convert(const F &f, T &t){
stringstream ss;
ss << f;
ss >> t;
}
template <class Con>
string concat(const Con &c, const string &spr){
stringstream ss;
typename Con::const_iterator it = c.begin(), en = c.end();
bool fst = true;
for(; it != en; ++it){
if(!fst){ ss << spr; }
fst = false;
ss << *it;
}
return ss.str();
}
template <class Con, class Fun>
vector<typename Con::value_type> cfilter(const Con &c, Fun f) {
vector<typename Con::value_type> ret;
typename Con::const_iterator it = c.begin(), en = c.end();
for(; it != en; ++it){
if(f(*it)){
ret.emplace_back(*it);
}
}
return ret;
}
#if __cplusplus >= 201103L
template <class Con, class Fun>
auto cmap(const Con &c, Fun f) -> vector<decltype(f(*c.begin()))> {
vector<decltype(f(*c.begin()))> ret;
ret.reserve(c.size());
for(const auto &x: c){
ret.emplace_back(f(x));
}
return ret;
}
#endif
#define REP(i,n) for(int i=0;i<int(n);++i)
#define RALL(v) (v).rbegin(),(v).rend()
#define tget(t,i) get<i>(t)
#define MOD 1000000007LL
#define EPS 1e-8
void mainmain(){
set<int> st = {0,1,3,5,6,14,15,17,18,19,20,21,22,23,24,27,28,29,30,31,32,34,36,39,40,41,44,47,48,49,54,55,57,58,60,62,63,65,66,67,68,69,70,71,72,74,75,78,79,80,81,83,84,85,88,89,92,94,96,97,98,};
int n;
scanf("%d", &n);
if(st.count(n)){ printf("%d\n", n); }
}
}
int main() try{
// ios::sync_with_stdio(false); cin.tie(0);
cout << fixed << setprecision(10);
cerr << fixed << setprecision(4);
mainmain();
}
catch(const exception &e){
cerr << "exception: " << e.what() << endl;
abort();
}
catch(...){
cerr << "exception" << endl;
abort();
}
詳細情報
| 問題 |
_ : Echo |
| ユーザ名 |
climpet |
| 投稿日時 |
2020/09/22 21:52:10 |
| 言語 |
C++17 |
| 状態 |
Wrong Answer
|
| 得点 |
-1644 |
| ソースコード長 |
3124 Byte |
| 実行時間 |
- |
| メモリ使用量 |
- |
コンパイラメッセージ
main.cpp: In function 'void {anonymous}::mainmain()':
main.cpp:117:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d", &n);
~~~~~^~~~~~~~~~
ジャッジ結果
| セット名 |
得点 / 配点 |
テストケース |
| set_000 |
0 / 10 |
56.txt, 82.txt |
| set_001 |
0 / 14 |
26.txt, 53.txt |
| set_002 |
0 / 3 |
81.txt, 11.txt |
| set_003 |
0 / 6 |
25.txt, 36.txt |
| set_004 |
0 / 9 |
88.txt, 51.txt |
| set_005 |
0 / 17 |
08.txt, 09.txt |
| set_006 |
0 / 18 |
25.txt, 58.txt |
| set_007 |
0 / 12 |
09.txt, 27.txt |
| set_008 |
0 / 12 |
38.txt, 94.txt |
| set_009 |
0 / 4 |
26.txt, 52.txt |
| set_010 |
0 / 9 |
11.txt, 98.txt |
| set_011 |
0 / 8 |
26.txt, 57.txt |
| set_012 |
0 / 14 |
73.txt, 54.txt |
| set_013 |
0 / 20 |
45.txt, 36.txt |
| set_014 |
0 / 10 |
26.txt, 72.txt |
| set_015 |
0 / 12 |
09.txt, 28.txt |
| set_016 |
0 / 9 |
34.txt, 12.txt |
| set_017 |
0 / 15 |
77.txt, 71.txt |
| set_018 |
0 / 6 |
82.txt, 62.txt |
| set_019 |
0 / 8 |
45.txt, 23.txt |
| set_020 |
2 / 2 |
83.txt, 27.txt |
| set_021 |
0 / 9 |
04.txt, 53.txt |
| set_022 |
0 / 11 |
95.txt, 56.txt |
| set_023 |
0 / 20 |
15.txt, 16.txt |
| set_024 |
0 / 19 |
37.txt, 85.txt |
| set_025 |
0 / 13 |
87.txt, 22.txt |
| set_026 |
0 / 3 |
39.txt, 12.txt |
| set_027 |
0 / 18 |
50.txt, 48.txt |
| set_028 |
0 / 17 |
08.txt, 85.txt |
| set_029 |
0 / 5 |
55.txt, 51.txt |
| set_030 |
0 / 8 |
43.txt, 81.txt |
| set_031 |
0 / 19 |
95.txt, 83.txt |
| set_032 |
0 / 14 |
86.txt, 54.txt |
| set_033 |
0 / 20 |
53.txt, 00.txt |
| set_034 |
1 / 1 |
19.txt, 03.txt |
| set_035 |
0 / 14 |
64.txt, 54.txt |
| set_036 |
0 / 3 |
12.txt, 32.txt |
| set_037 |
0 / 10 |
43.txt, 75.txt |
| set_038 |
0 / 4 |
87.txt, 09.txt |
| set_039 |
0 / 20 |
33.txt, 65.txt |
| set_040 |
17 / 17 |
47.txt, 03.txt |
| set_041 |
0 / 8 |
76.txt, 92.txt |
| set_042 |
0 / 11 |
12.txt, 24.txt |
| set_043 |
17 / 17 |
97.txt, 27.txt |
| set_044 |
0 / 11 |
07.txt, 73.txt |
| set_045 |
0 / 13 |
76.txt, 60.txt |
| set_046 |
0 / 8 |
79.txt, 51.txt |
| set_047 |
0 / 3 |
04.txt, 49.txt |
| set_048 |
0 / 19 |
74.txt, 73.txt |
| set_049 |
8 / 8 |
19.txt, 83.txt |
| set_050 |
0 / 6 |
43.txt, 29.txt |
| set_051 |
0 / 14 |
55.txt, 99.txt |
| set_052 |
0 / 14 |
57.txt, 91.txt |
| set_053 |
0 / 7 |
34.txt, 51.txt |
| set_054 |
3 / 3 |
29.txt, 72.txt |
| set_055 |
1 / 1 |
01.txt, 17.txt |
| set_056 |
19 / 19 |
27.txt, 18.txt |
| set_057 |
0 / 7 |
53.txt, 69.txt |
| set_058 |
0 / 12 |
16.txt, 73.txt |
| set_059 |
8 / 8 |
78.txt, 48.txt |
| set_060 |
0 / 12 |
86.txt, 92.txt |
| set_061 |
0 / 19 |
07.txt, 23.txt |
| set_062 |
0 / 9 |
86.txt, 28.txt |
| set_063 |
0 / 17 |
95.txt, 04.txt |
| set_064 |
6 / 6 |
94.txt, 23.txt |
| set_065 |
0 / 4 |
46.txt, 71.txt |
| set_066 |
0 / 13 |
35.txt, 41.txt |
| set_067 |
0 / 3 |
77.txt, 76.txt |
| set_068 |
0 / 13 |
04.txt, 40.txt |
| set_069 |
0 / 10 |
04.txt, 70.txt |
| set_070 |
0 / 8 |
43.txt, 04.txt |
| set_071 |
0 / 16 |
08.txt, 31.txt |
| set_072 |
0 / 8 |
93.txt, 36.txt |
| set_073 |
0 / 8 |
10.txt, 18.txt |
| set_074 |
0 / 7 |
82.txt, 23.txt |
| set_075 |
0 / 20 |
91.txt, 18.txt |
| set_076 |
0 / 18 |
61.txt, 08.txt |
| set_077 |
0 / 7 |
33.txt, 60.txt |
| set_078 |
10 / 10 |
94.txt, 21.txt |
| set_079 |
0 / 11 |
38.txt, 24.txt |
| set_080 |
12 / 12 |
21.txt, 72.txt |
| set_081 |
0 / 14 |
29.txt, 73.txt |
| set_082 |
0 / 8 |
26.txt, 86.txt |
| set_083 |
0 / 13 |
61.txt, 76.txt |
| set_084 |
0 / 14 |
02.txt, 46.txt |
| set_085 |
0 / 13 |
16.txt, 78.txt |
| set_086 |
0 / 4 |
59.txt, 78.txt |
| set_087 |
0 / 20 |
77.txt, 35.txt |
| set_088 |
0 / 3 |
09.txt, 83.txt |
| set_089 |
0 / 5 |
55.txt, 76.txt |
| set_090 |
0 / 7 |
90.txt, 63.txt |
| set_091 |
0 / 13 |
02.txt, 30.txt |
| set_092 |
0 / 10 |
46.txt, 65.txt |
| set_093 |
0 / 13 |
15.txt, 59.txt |
| set_094 |
6 / 6 |
06.txt, 36.txt |
| set_095 |
0 / 17 |
16.txt, 24.txt |
| set_096 |
0 / 17 |
08.txt, 16.txt |
| set_097 |
0 / 17 |
41.txt, 12.txt |
| set_098 |
0 / 1 |
67.txt, 35.txt |
| set_099 |
0 / 10 |
96.txt, 10.txt |
| set_100 |
0 / 8 |
17.txt, 11.txt |
| set_101 |
0 / 6 |
59.txt, 94.txt |
| set_102 |
0 / 2 |
16.txt, 70.txt |
| set_103 |
0 / 9 |
35.txt, 34.txt |
| set_104 |
12 / 12 |
32.txt, 44.txt |
| set_105 |
0 / 16 |
25.txt, 91.txt |
| set_106 |
0 / 10 |
13.txt, 80.txt |
| set_107 |
7 / 7 |
78.txt, 72.txt |
| set_108 |
0 / 7 |
07.txt, 97.txt |
| set_109 |
0 / 18 |
55.txt, 45.txt |
| set_110 |
10 / 10 |
60.txt, 23.txt |
| set_111 |
0 / 2 |
38.txt, 97.txt |
| set_112 |
0 / 12 |
19.txt, 51.txt |
| set_113 |
4 / 4 |
32.txt, 30.txt |
| set_114 |
0 / 13 |
02.txt, 27.txt |
| set_115 |
0 / 14 |
56.txt, 68.txt |
| set_116 |
0 / 17 |
52.txt, 65.txt |
| set_117 |
0 / 9 |
90.txt, 93.txt |
| set_118 |
0 / 11 |
61.txt, 89.txt |
| set_119 |
4 / 4 |
96.txt, 05.txt |
| set_120 |
0 / 12 |
99.txt, 94.txt |
| set_121 |
0 / 3 |
57.txt, 82.txt |
| set_122 |
0 / 19 |
43.txt, 05.txt |
| set_123 |
0 / 8 |
37.txt, 42.txt, 05.txt |
| set_124 |
0 / 12 |
25.txt, 34.txt, 65.txt |
| set_125 |
0 / 14 |
16.txt, 93.txt, 65.txt |
| set_126 |
0 / 5 |
11.txt, 98.txt, 78.txt |
| set_127 |
0 / 11 |
39.txt, 93.txt, 23.txt |
| set_128 |
0 / 8 |
95.txt, 39.txt, 32.txt |
| set_129 |
0 / 19 |
56.txt, 67.txt, 33.txt |
| set_130 |
0 / 10 |
56.txt, 04.txt, 65.txt |
| set_131 |
0 / 7 |
26.txt, 81.txt, 89.txt |
| set_132 |
0 / 20 |
08.txt, 57.txt, 65.txt |
| set_133 |
0 / 18 |
10.txt, 80.txt, 79.txt |
| set_134 |
2 / 2 |
01.txt, 14.txt, 69.txt |
| set_135 |
0 / 15 |
37.txt, 17.txt, 60.txt |
| set_136 |
0 / 19 |
08.txt, 52.txt, 94.txt |
| set_137 |
0 / 6 |
64.txt, 11.txt, 22.txt |
| set_138 |
0 / 16 |
76.txt, 98.txt, 30.txt |
| set_139 |
0 / 20 |
49.txt, 93.txt, 40.txt |
| set_140 |
0 / 4 |
90.txt, 88.txt, 18.txt |
| set_141 |
0 / 20 |
61.txt, 53.txt, 93.txt |
| set_142 |
0 / 19 |
38.txt, 71.txt, 83.txt |
| set_143 |
0 / 5 |
90.txt, 80.txt, 85.txt |
| set_144 |
0 / 12 |
29.txt, 04.txt, 78.txt |
| set_145 |
0 / 12 |
84.txt, 51.txt, 30.txt |
| set_146 |
0 / 19 |
15.txt, 90.txt, 87.txt |
| set_147 |
0 / 5 |
02.txt, 52.txt, 45.txt |
| set_148 |
7 / 7 |
58.txt, 19.txt, 32.txt |
| set_149 |
0 / 18 |
46.txt, 28.txt, 75.txt |
| set_150 |
0 / 10 |
25.txt, 09.txt, 80.txt |
| set_151 |
0 / 13 |
08.txt, 17.txt, 23.txt |
| set_152 |
0 / 18 |
37.txt, 64.txt, 78.txt |
| set_153 |
0 / 12 |
05.txt, 51.txt, 20.txt |
| set_154 |
0 / 17 |
90.txt, 17.txt, 76.txt |
| set_155 |
0 / 9 |
11.txt, 93.txt, 94.txt |
| set_156 |
0 / 19 |
95.txt, 09.txt, 79.txt |
| set_157 |
0 / 12 |
82.txt, 91.txt, 45.txt |
| set_158 |
0 / 11 |
37.txt, 73.txt, 97.txt |
| set_159 |
7 / 7 |
96.txt, 80.txt, 83.txt |
| set_160 |
0 / 3 |
87.txt, 63.txt, 75.txt |
| set_161 |
0 / 8 |
42.txt, 20.txt, 03.txt |
| set_162 |
0 / 20 |
11.txt, 04.txt, 65.txt |
| set_163 |
0 / 5 |
90.txt, 79.txt, 19.txt |
| set_164 |
0 / 15 |
90.txt, 62.txt, 44.txt |
| set_165 |
0 / 14 |
99.txt, 47.txt, 83.txt |
| set_166 |
0 / 18 |
45.txt, 72.txt, 85.txt |
| set_167 |
0 / 20 |
13.txt, 17.txt, 04.txt |
| set_168 |
0 / 13 |
55.txt, 09.txt, 53.txt |
| set_169 |
0 / 9 |
56.txt, 13.txt, 84.txt |
| set_170 |
0 / 13 |
06.txt, 16.txt, 21.txt |
| set_171 |
0 / 5 |
99.txt, 51.txt, 30.txt |
| set_172 |
0 / 13 |
26.txt, 02.txt, 45.txt |
| set_173 |
14 / 14 |
34.txt, 54.txt, 70.txt |
| set_174 |
0 / 1 |
02.txt, 53.txt, 45.txt |
| set_175 |
0 / 2 |
15.txt, 16.txt, 69.txt |
| set_176 |
0 / 4 |
64.txt, 06.txt, 29.txt |
| set_177 |
0 / 3 |
37.txt, 51.txt, 75.txt |
| set_178 |
0 / 15 |
82.txt, 22.txt, 75.txt |
| set_179 |
0 / 11 |
39.txt, 52.txt, 44.txt |
| set_180 |
0 / 18 |
56.txt, 90.txt, 53.txt |
| set_181 |
0 / 13 |
35.txt, 86.txt, 20.txt |
| set_182 |
0 / 12 |
90.txt, 29.txt, 31.txt |
| set_183 |
11 / 11 |
24.txt, 48.txt, 00.txt, 85.txt |
| set_184 |
0 / 16 |
13.txt, 41.txt, 24.txt, 69.txt |
| set_185 |
0 / 19 |
57.txt, 17.txt, 35.txt, 39.txt |
| set_186 |
0 / 8 |
57.txt, 42.txt, 80.txt, 21.txt |
| set_187 |
6 / 6 |
55.txt, 29.txt, 28.txt, 21.txt |
| set_188 |
0 / 12 |
43.txt, 88.txt, 63.txt, 21.txt |
| set_189 |
0 / 11 |
95.txt, 66.txt, 39.txt, 48.txt |
| set_190 |
0 / 10 |
61.txt, 80.txt, 14.txt, 47.txt |
| set_191 |
0 / 18 |
61.txt, 90.txt, 53.txt, 98.txt |
| set_192 |
0 / 15 |
10.txt, 94.txt, 23.txt, 65.txt |
| set_193 |
0 / 6 |
33.txt, 53.txt, 22.txt, 94.txt |
| set_194 |
0 / 17 |
50.txt, 74.txt, 51.txt, 89.txt |
| set_195 |
0 / 10 |
56.txt, 09.txt, 34.txt, 65.txt |
| set_196 |
0 / 10 |
08.txt, 13.txt, 35.txt, 18.txt |
| set_197 |
0 / 16 |
39.txt, 10.txt, 80.txt, 20.txt |
| set_198 |
0 / 11 |
74.txt, 06.txt, 17.txt, 28.txt, 91.txt |
| set_199 |
0 / 11 |
90.txt, 35.txt, 82.txt, 44.txt, 47.txt |
| penalty_00 |
-44 / -44 |
00.txt |
| penalty_01 |
-6 / -6 |
01.txt |
| penalty_02 |
0 / -13 |
02.txt |
| penalty_03 |
-46 / -46 |
03.txt |
| penalty_04 |
0 / -19 |
04.txt |
| penalty_05 |
-26 / -26 |
05.txt |
| penalty_06 |
-10 / -10 |
06.txt |
| penalty_07 |
0 / -4 |
07.txt |
| penalty_08 |
0 / -4 |
08.txt |
| penalty_09 |
0 / -12 |
09.txt |
| penalty_10 |
0 / -24 |
10.txt |
| penalty_11 |
0 / -17 |
11.txt |
| penalty_12 |
0 / -27 |
12.txt |
| penalty_13 |
0 / -8 |
13.txt |
| penalty_14 |
-28 / -28 |
14.txt |
| penalty_15 |
-3 / -3 |
15.txt |
| penalty_16 |
0 / -10 |
16.txt |
| penalty_17 |
-11 / -11 |
17.txt |
| penalty_18 |
-49 / -49 |
18.txt |
| penalty_19 |
-33 / -33 |
19.txt |
| penalty_20 |
-44 / -44 |
20.txt |
| penalty_21 |
-43 / -43 |
21.txt |
| penalty_22 |
-35 / -35 |
22.txt |
| penalty_23 |
-41 / -41 |
23.txt |
| penalty_24 |
-30 / -30 |
24.txt |
| penalty_25 |
0 / -6 |
25.txt |
| penalty_26 |
0 / -7 |
26.txt |
| penalty_27 |
-44 / -44 |
27.txt |
| penalty_28 |
-24 / -24 |
28.txt |
| penalty_29 |
-14 / -14 |
29.txt |
| penalty_30 |
-40 / -40 |
30.txt |
| penalty_31 |
-32 / -32 |
31.txt |
| penalty_32 |
-37 / -37 |
32.txt |
| penalty_33 |
0 / -16 |
33.txt |
| penalty_34 |
-17 / -17 |
34.txt |
| penalty_35 |
0 / -11 |
35.txt |
| penalty_36 |
-44 / -44 |
36.txt |
| penalty_37 |
0 / -2 |
37.txt |
| penalty_38 |
0 / -7 |
38.txt |
| penalty_39 |
-21 / -21 |
39.txt |
| penalty_40 |
-48 / -48 |
40.txt |
| penalty_41 |
-24 / -24 |
41.txt |
| penalty_42 |
0 / -11 |
42.txt |
| penalty_43 |
0 / -4 |
43.txt |
| penalty_44 |
-37 / -37 |
44.txt |
| penalty_45 |
0 / -31 |
45.txt |
| penalty_46 |
0 / -19 |
46.txt |
| penalty_47 |
-40 / -40 |
47.txt |
| penalty_48 |
-43 / -43 |
48.txt |
| penalty_49 |
-25 / -25 |
49.txt |
| penalty_50 |
0 / -3 |
50.txt |
| penalty_51 |
0 / -36 |
51.txt |
| penalty_52 |
0 / -21 |
52.txt |
| penalty_53 |
0 / -24 |
53.txt |
| penalty_54 |
-43 / -43 |
54.txt |
| penalty_55 |
-11 / -11 |
55.txt |
| penalty_56 |
0 / -3 |
56.txt |
| penalty_57 |
-9 / -9 |
57.txt |
| penalty_58 |
-14 / -14 |
58.txt |
| penalty_59 |
0 / -12 |
59.txt |
| penalty_60 |
-34 / -34 |
60.txt |
| penalty_61 |
0 / -3 |
61.txt |
| penalty_62 |
-32 / -32 |
62.txt |
| penalty_63 |
-36 / -36 |
63.txt |
| penalty_64 |
0 / -8 |
64.txt |
| penalty_65 |
-50 / -50 |
65.txt |
| penalty_66 |
-4 / -4 |
66.txt |
| penalty_67 |
-11 / -11 |
67.txt |
| penalty_68 |
-13 / -13 |
68.txt |
| penalty_69 |
-35 / -35 |
69.txt |
| penalty_70 |
-44 / -44 |
70.txt |
| penalty_71 |
-28 / -28 |
71.txt |
| penalty_72 |
-48 / -48 |
72.txt |
| penalty_73 |
0 / -15 |
73.txt |
| penalty_74 |
-6 / -6 |
74.txt |
| penalty_75 |
-38 / -38 |
75.txt |
| penalty_76 |
0 / -15 |
76.txt |
| penalty_77 |
0 / -3 |
77.txt |
| penalty_78 |
-40 / -40 |
78.txt |
| penalty_79 |
-32 / -32 |
79.txt |
| penalty_80 |
-27 / -27 |
80.txt |
| penalty_81 |
-12 / -12 |
81.txt |
| penalty_82 |
0 / -24 |
82.txt |
| penalty_83 |
-41 / -41 |
83.txt |
| penalty_84 |
-10 / -10 |
84.txt |
| penalty_85 |
-49 / -49 |
85.txt |
| penalty_86 |
0 / -19 |
86.txt |
| penalty_87 |
0 / -8 |
87.txt |
| penalty_88 |
-29 / -29 |
88.txt |
| penalty_89 |
-40 / -40 |
89.txt |
| penalty_90 |
0 / -4 |
90.txt |
| penalty_91 |
0 / -29 |
91.txt |
| penalty_92 |
-50 / -50 |
92.txt |
| penalty_93 |
0 / -30 |
93.txt |
| penalty_94 |
-35 / -35 |
94.txt |
| penalty_95 |
0 / -1 |
95.txt |
| penalty_96 |
-16 / -16 |
96.txt |
| penalty_97 |
-22 / -22 |
97.txt |
| penalty_98 |
-40 / -40 |
98.txt |
| penalty_99 |
0 / -15 |
99.txt |
| ケース名 |
結果 |
実行時間 |
メモリ |
|
| 00.txt |
Accepted |
0.00 sec |
1640 KB |
|
| 01.txt |
Accepted |
0.00 sec |
1640 KB |
|
| 02.txt |
Wrong Answer |
0.00 sec |
1640 KB |
|
| 03.txt |
Accepted |
0.00 sec |
1640 KB |
|
| 04.txt |
Wrong Answer |
0.00 sec |
1640 KB |
|
| 05.txt |
Accepted |
0.01 sec |
1640 KB |
|
| 06.txt |
Accepted |
0.00 sec |
1640 KB |
|
| 07.txt |
Wrong Answer |
0.00 sec |
1640 KB |
|
| 08.txt |
Wrong Answer |
0.00 sec |
1640 KB |
|
| 09.txt |
Wrong Answer |
0.00 sec |
1640 KB |
|
| 10.txt |
Wrong Answer |
0.00 sec |
1644 KB |
|
| 11.txt |
Wrong Answer |
0.00 sec |
1640 KB |
|
| 12.txt |
Wrong Answer |
0.00 sec |
1640 KB |
|
| 13.txt |
Wrong Answer |
0.00 sec |
1644 KB |
|
| 14.txt |
Accepted |
0.00 sec |
1644 KB |
|
| 15.txt |
Accepted |
0.01 sec |
1644 KB |
|
| 16.txt |
Wrong Answer |
0.00 sec |
1640 KB |
|
| 17.txt |
Accepted |
0.00 sec |
1640 KB |
|
| 18.txt |
Accepted |
0.00 sec |
1644 KB |
|
| 19.txt |
Accepted |
0.00 sec |
1644 KB |
|
| 20.txt |
Accepted |
0.00 sec |
1640 KB |
|
| 21.txt |
Accepted |
0.00 sec |
1644 KB |
|
| 22.txt |
Accepted |
0.00 sec |
1640 KB |
|
| 23.txt |
Accepted |
0.00 sec |
1640 KB |
|
| 24.txt |
Accepted |
0.00 sec |
1640 KB |
|
| 25.txt |
Wrong Answer |
0.00 sec |
1644 KB |
|
| 26.txt |
Wrong Answer |
0.01 sec |
1644 KB |
|
| 27.txt |
Accepted |
0.00 sec |
1644 KB |
|
| 28.txt |
Accepted |
0.00 sec |
1644 KB |
|
| 29.txt |
Accepted |
0.00 sec |
1644 KB |
|
| 30.txt |
Accepted |
0.00 sec |
1640 KB |
|
| 31.txt |
Accepted |
0.00 sec |
1644 KB |
|
| 32.txt |
Accepted |
0.00 sec |
1644 KB |
|
| 33.txt |
Wrong Answer |
0.00 sec |
1644 KB |
|
| 34.txt |
Accepted |
0.00 sec |
1644 KB |
|
| 35.txt |
Wrong Answer |
0.00 sec |
1640 KB |
|
| 36.txt |
Accepted |
0.00 sec |
1644 KB |
|
| 37.txt |
Wrong Answer |
0.00 sec |
1644 KB |
|
| 38.txt |
Wrong Answer |
0.00 sec |
1644 KB |
|
| 39.txt |
Accepted |
0.00 sec |
1640 KB |
|
| 40.txt |
Accepted |
0.00 sec |
1644 KB |
|
| 41.txt |
Accepted |
0.00 sec |
1640 KB |
|
| 42.txt |
Wrong Answer |
0.00 sec |
1640 KB |
|
| 43.txt |
Wrong Answer |
0.00 sec |
1640 KB |
|
| 44.txt |
Accepted |
0.01 sec |
1644 KB |
|
| 45.txt |
Wrong Answer |
0.01 sec |
1640 KB |
|
| 46.txt |
Wrong Answer |
0.00 sec |
1640 KB |
|
| 47.txt |
Accepted |
0.00 sec |
1644 KB |
|
| 48.txt |
Accepted |
0.00 sec |
1644 KB |
|
| 49.txt |
Accepted |
0.00 sec |
1644 KB |
|
| 50.txt |
Wrong Answer |
0.00 sec |
1640 KB |
|
| 51.txt |
Wrong Answer |
0.00 sec |
1640 KB |
|
| 52.txt |
Wrong Answer |
0.00 sec |
1640 KB |
|
| 53.txt |
Wrong Answer |
0.00 sec |
1640 KB |
|
| 54.txt |
Accepted |
0.00 sec |
1640 KB |
|
| 55.txt |
Accepted |
0.00 sec |
1640 KB |
|
| 56.txt |
Wrong Answer |
0.00 sec |
1640 KB |
|
| 57.txt |
Accepted |
0.00 sec |
1644 KB |
|
| 58.txt |
Accepted |
0.00 sec |
1640 KB |
|
| 59.txt |
Wrong Answer |
0.00 sec |
1640 KB |
|
| 60.txt |
Accepted |
0.01 sec |
1640 KB |
|
| 61.txt |
Wrong Answer |
0.00 sec |
1640 KB |
|
| 62.txt |
Accepted |
0.00 sec |
1640 KB |
|
| 63.txt |
Accepted |
0.01 sec |
1644 KB |
|
| 64.txt |
Wrong Answer |
0.00 sec |
1644 KB |
|
| 65.txt |
Accepted |
0.00 sec |
1644 KB |
|
| 66.txt |
Accepted |
0.00 sec |
1640 KB |
|
| 67.txt |
Accepted |
0.00 sec |
1640 KB |
|
| 68.txt |
Accepted |
0.00 sec |
1644 KB |
|
| 69.txt |
Accepted |
0.00 sec |
1640 KB |
|
| 70.txt |
Accepted |
0.00 sec |
1640 KB |
|
| 71.txt |
Accepted |
0.01 sec |
1644 KB |
|
| 72.txt |
Accepted |
0.00 sec |
1644 KB |
|
| 73.txt |
Wrong Answer |
0.00 sec |
1644 KB |
|
| 74.txt |
Accepted |
0.00 sec |
1640 KB |
|
| 75.txt |
Accepted |
0.00 sec |
1640 KB |
|
| 76.txt |
Wrong Answer |
0.00 sec |
1640 KB |
|
| 77.txt |
Wrong Answer |
0.00 sec |
1640 KB |
|
| 78.txt |
Accepted |
0.00 sec |
1640 KB |
|
| 79.txt |
Accepted |
0.00 sec |
1640 KB |
|
| 80.txt |
Accepted |
0.00 sec |
1640 KB |
|
| 81.txt |
Accepted |
0.00 sec |
1640 KB |
|
| 82.txt |
Wrong Answer |
0.00 sec |
1644 KB |
|
| 83.txt |
Accepted |
0.00 sec |
1640 KB |
|
| 84.txt |
Accepted |
0.00 sec |
1644 KB |
|
| 85.txt |
Accepted |
0.00 sec |
1644 KB |
|
| 86.txt |
Wrong Answer |
0.00 sec |
1640 KB |
|
| 87.txt |
Wrong Answer |
0.00 sec |
1640 KB |
|
| 88.txt |
Accepted |
0.00 sec |
1640 KB |
|
| 89.txt |
Accepted |
0.00 sec |
1640 KB |
|
| 90.txt |
Wrong Answer |
0.00 sec |
1644 KB |
|
| 91.txt |
Wrong Answer |
0.00 sec |
1644 KB |
|
| 92.txt |
Accepted |
0.00 sec |
1644 KB |
|
| 93.txt |
Wrong Answer |
0.00 sec |
1640 KB |
|
| 94.txt |
Accepted |
0.01 sec |
1640 KB |
|
| 95.txt |
Wrong Answer |
0.00 sec |
1640 KB |
|
| 96.txt |
Accepted |
0.00 sec |
1640 KB |
|
| 97.txt |
Accepted |
0.00 sec |
1640 KB |
|
| 98.txt |
Accepted |
0.00 sec |
1640 KB |
|
| 99.txt |
Wrong Answer |
0.00 sec |
1640 KB |
|