Task: | Skittles |
Sender: | Rasse |
Submission time: | 2024-11-18 18:36:13 +0200 |
Language: | C++ (C++17) |
Status: | READY |
Result: | RUNTIME ERROR |
test | verdict | time | |
---|---|---|---|
#1 | RUNTIME ERROR | 0.17 s | details |
#2 | RUNTIME ERROR | 0.17 s | details |
#3 | RUNTIME ERROR | 0.17 s | details |
#4 | RUNTIME ERROR | 0.17 s | details |
#5 | RUNTIME ERROR | 0.17 s | details |
#6 | RUNTIME ERROR | 0.17 s | details |
#7 | RUNTIME ERROR | 0.17 s | details |
#8 | RUNTIME ERROR | 0.17 s | details |
#9 | RUNTIME ERROR | 0.17 s | details |
#10 | RUNTIME ERROR | 0.17 s | details |
#11 | RUNTIME ERROR | 0.17 s | details |
#12 | RUNTIME ERROR | 0.16 s | details |
#13 | RUNTIME ERROR | 0.09 s | details |
#14 | RUNTIME ERROR | 0.13 s | details |
#15 | RUNTIME ERROR | 0.14 s | details |
#16 | RUNTIME ERROR | 0.14 s | details |
#17 | RUNTIME ERROR | 0.13 s | details |
#18 | RUNTIME ERROR | 0.10 s | details |
#19 | RUNTIME ERROR | 0.15 s | details |
#20 | RUNTIME ERROR | 0.10 s | details |
#21 | RUNTIME ERROR | 0.16 s | details |
#22 | RUNTIME ERROR | 0.10 s | details |
#23 | RUNTIME ERROR | 0.17 s | details |
#24 | RUNTIME ERROR | 0.14 s | details |
#25 | RUNTIME ERROR | 0.16 s | details |
#26 | RUNTIME ERROR | 0.17 s | details |
#27 | RUNTIME ERROR | 0.15 s | details |
#28 | RUNTIME ERROR | 0.15 s | details |
#29 | RUNTIME ERROR | 0.12 s | details |
#30 | RUNTIME ERROR | 0.10 s | details |
#31 | RUNTIME ERROR | 0.16 s | details |
#32 | RUNTIME ERROR | 0.14 s | details |
#33 | RUNTIME ERROR | 0.16 s | details |
#34 | RUNTIME ERROR | 0.16 s | details |
#35 | RUNTIME ERROR | 0.12 s | details |
#36 | RUNTIME ERROR | 0.11 s | details |
#37 | RUNTIME ERROR | 0.13 s | details |
#38 | RUNTIME ERROR | 0.10 s | details |
#39 | RUNTIME ERROR | 0.15 s | details |
#40 | RUNTIME ERROR | 0.15 s | details |
#41 | RUNTIME ERROR | 0.12 s | details |
#42 | RUNTIME ERROR | 0.12 s | details |
#43 | RUNTIME ERROR | 0.16 s | details |
#44 | RUNTIME ERROR | 0.12 s | details |
#45 | RUNTIME ERROR | 0.17 s | details |
#46 | RUNTIME ERROR | 0.15 s | details |
#47 | RUNTIME ERROR | 0.16 s | details |
#48 | RUNTIME ERROR | 0.10 s | details |
#49 | RUNTIME ERROR | 0.13 s | details |
#50 | RUNTIME ERROR | 0.17 s | details |
#51 | RUNTIME ERROR | 0.11 s | details |
#52 | RUNTIME ERROR | 0.11 s | details |
#53 | RUNTIME ERROR | 0.09 s | details |
#54 | RUNTIME ERROR | 0.17 s | details |
#55 | RUNTIME ERROR | 0.10 s | details |
#56 | RUNTIME ERROR | 0.10 s | details |
#57 | RUNTIME ERROR | 0.10 s | details |
#58 | RUNTIME ERROR | 0.10 s | details |
#59 | RUNTIME ERROR | 0.13 s | details |
#60 | RUNTIME ERROR | 0.10 s | details |
#61 | RUNTIME ERROR | 0.11 s | details |
#62 | RUNTIME ERROR | 0.12 s | details |
#63 | RUNTIME ERROR | 0.10 s | details |
Compiler report
input/code.cpp: In function 'int initNCR(int, int)': input/code.cpp:69:1: warning: no return statement in function returning non-void [-Wreturn-type] 69 | } | ^
Code
#include <iostream> #include <vector> #include <array> #include <string> #include <algorithm> #include <numeric> #include <unordered_map> #include <unordered_set> #include <set> #include <queue> #include <climits> #include <cmath> #include <functional> #include <type_traits> #include <fstream> #include <bitset> #include <complex> #include <iomanip> #include <ext/pb_ds/assoc_container.hpp> // gcc only template<typename T> using ordered_set = __gnu_pbds::tree<T, __gnu_pbds::null_type, std::less<T>, __gnu_pbds::rb_tree_tag, __gnu_pbds::tree_order_statistics_node_update>; //#define int long long using namespace std; #define cross(x, y) (((x)*conj(y)).imag()) #define sign(v) ((0 < (v)) - ((v) < 0)) int mod = 998244353; int p(int a, int b, int m) { if (b == 0) return 1; else if (b % 2 == 0) { int r = p(a, b/2, m); return (r*r) % m; } else return (p(a, b-1, m)*a) % m; } int gdc(int a, int b) { if (b == 0) return a; return gdc(b, a%b); } vector<int> facts; int startInverse = 1; int initNCR(int r, int maxN) { facts = vector<int>(maxN+1); facts[0] = 1; int multiple = 1; for (int i = 1; i <= r; i++) { multiple *= i; multiple %= mod; } facts.at(r) = multiple; for (int i = r+1; i < maxN; i++) { multiple *= i; multiple %= mod; multiple *= p(i-r, mod-2, mod); multiple %= mod; facts.at(i) = multiple; } } int fastNCR(int n, int r) { int val = startInverse * facts.at(n); val %= mod; return val * p(facts.at(r), mod-2, mod); } int nCr(int n, int r) { int res = 1; for (int i = 0; i < r; i++) { res *= (n-i); res *= p(i+1, mod-2, mod); } return res; } void solve() { int n, a, b; cin >> n >> a >> b; initNCR(n-1, 200010); int result = 0; for (int i = a; i <= b; i++) { result += fastNCR(i+n-1, n-1); result %= mod; } cout << result; } signed main() { ios::sync_with_stdio(0); cin.tie(0); cout.precision(15); int t = 1; //cin >> t; for (int i = 0; i < t; i++) { solve(); //cout.flush(); } }
Test details
Test 1
Verdict: RUNTIME ERROR
input |
---|
1 1 10 |
correct output |
---|
10 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 2
Verdict: RUNTIME ERROR
input |
---|
2 3 3 |
correct output |
---|
4 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 3
Verdict: RUNTIME ERROR
input |
---|
2 4 5 |
correct output |
---|
11 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 4
Verdict: RUNTIME ERROR
input |
---|
3 4 5 |
correct output |
---|
36 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 5
Verdict: RUNTIME ERROR
input |
---|
3 2 2 |
correct output |
---|
6 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 6
Verdict: RUNTIME ERROR
input |
---|
5 5 5 |
correct output |
---|
126 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 7
Verdict: RUNTIME ERROR
input |
---|
10 10 10 |
correct output |
---|
92378 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 8
Verdict: RUNTIME ERROR
input |
---|
10 1 10 |
correct output |
---|
184755 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 9
Verdict: RUNTIME ERROR
input |
---|
100 100 100 |
correct output |
---|
866655715 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 10
Verdict: RUNTIME ERROR
input |
---|
10 100 100 |
correct output |
---|
918123961 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 11
Verdict: RUNTIME ERROR
input |
---|
1000 10 10 |
correct output |
---|
84965120 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 12
Verdict: RUNTIME ERROR
input |
---|
10000 10000 10000 |
correct output |
---|
658363258 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 13
Verdict: RUNTIME ERROR
input |
---|
100000 100000 100000 |
correct output |
---|
966937032 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 14
Verdict: RUNTIME ERROR
input |
---|
54883 59286 71521 |
correct output |
---|
908996595 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 15
Verdict: RUNTIME ERROR
input |
---|
41703 72034 99721 |
correct output |
---|
139159644 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 16
Verdict: RUNTIME ERROR
input |
---|
43601 2593 18509 |
correct output |
---|
804369499 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 17
Verdict: RUNTIME ERROR
input |
---|
55081 7073 70816 |
correct output |
---|
806880502 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 18
Verdict: RUNTIME ERROR
input |
---|
96705 54725 90064 |
correct output |
---|
521461113 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 19
Verdict: RUNTIME ERROR
input |
---|
22200 5519 87075 |
correct output |
---|
866679044 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 20
Verdict: RUNTIME ERROR
input |
---|
89288 33199 94750 |
correct output |
---|
812654801 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 21
Verdict: RUNTIME ERROR
input |
---|
7631 22735 77994 |
correct output |
---|
30255908 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 22
Verdict: RUNTIME ERROR
input |
---|
87345 1112 96856 |
correct output |
---|
944788802 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 23
Verdict: RUNTIME ERROR
input |
---|
1038 36447 50189 |
correct output |
---|
654272260 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 24
Verdict: RUNTIME ERROR
input |
---|
41703 72034 99721 |
correct output |
---|
139159644 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 25
Verdict: RUNTIME ERROR
input |
---|
18028 1948 6831 |
correct output |
---|
631722506 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 26
Verdict: RUNTIME ERROR
input |
---|
4873 28912 79929 |
correct output |
---|
106074189 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 27
Verdict: RUNTIME ERROR
input |
---|
28606 2900 95813 |
correct output |
---|
538554734 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 28
Verdict: RUNTIME ERROR
input |
---|
25093 4610 68059 |
correct output |
---|
799962519 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 29
Verdict: RUNTIME ERROR
input |
---|
67575 4472 32712 |
correct output |
---|
857647130 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 30
Verdict: RUNTIME ERROR
input |
---|
82449 18136 86245 |
correct output |
---|
420446937 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 31
Verdict: RUNTIME ERROR
input |
---|
18558 38661 75914 |
correct output |
---|
924425479 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 32
Verdict: RUNTIME ERROR
input |
---|
35543 34086 47960 |
correct output |
---|
210554536 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 33
Verdict: RUNTIME ERROR
input |
---|
20101 32903 99080 |
correct output |
---|
88647511 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 34
Verdict: RUNTIME ERROR
input |
---|
18028 1948 6831 |
correct output |
---|
631722506 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 35
Verdict: RUNTIME ERROR
input |
---|
61218 12076 16908 |
correct output |
---|
820171450 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 36
Verdict: RUNTIME ERROR
input |
---|
78139 13111 69284 |
correct output |
---|
904117059 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 37
Verdict: RUNTIME ERROR
input |
---|
45455 2862 43952 |
correct output |
---|
430742811 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 38
Verdict: RUNTIME ERROR
input |
---|
84538 61888 77158 |
correct output |
---|
294818599 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 39
Verdict: RUNTIME ERROR
input |
---|
26937 59685 80971 |
correct output |
---|
680140546 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 40
Verdict: RUNTIME ERROR
input |
---|
30632 9727 88573 |
correct output |
---|
877318826 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 41
Verdict: RUNTIME ERROR
input |
---|
55737 66074 71002 |
correct output |
---|
123569267 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 42
Verdict: RUNTIME ERROR
input |
---|
59351 587 51636 |
correct output |
---|
122513346 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 43
Verdict: RUNTIME ERROR
input |
---|
8954 7866 51810 |
correct output |
---|
961929284 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 44
Verdict: RUNTIME ERROR
input |
---|
61218 12076 16908 |
correct output |
---|
820171450 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 45
Verdict: RUNTIME ERROR
input |
---|
9556 43003 92502 |
correct output |
---|
424034313 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 46
Verdict: RUNTIME ERROR
input |
---|
20433 945 23474 |
correct output |
---|
794687216 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 47
Verdict: RUNTIME ERROR
input |
---|
9941 45344 78340 |
correct output |
---|
875489658 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 48
Verdict: RUNTIME ERROR
input |
---|
82532 68582 70655 |
correct output |
---|
238007640 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 49
Verdict: RUNTIME ERROR
input |
---|
52729 37586 66259 |
correct output |
---|
93243919 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 50
Verdict: RUNTIME ERROR
input |
---|
10475 17392 24871 |
correct output |
---|
977605482 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 51
Verdict: RUNTIME ERROR
input |
---|
76232 88012 95143 |
correct output |
---|
871309467 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 52
Verdict: RUNTIME ERROR
input |
---|
77184 58424 64500 |
correct output |
---|
693972156 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 53
Verdict: RUNTIME ERROR
input |
---|
96888 47083 55295 |
correct output |
---|
406195062 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 54
Verdict: RUNTIME ERROR
input |
---|
9556 43003 92502 |
correct output |
---|
424034313 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 55
Verdict: RUNTIME ERROR
input |
---|
83891 47894 87748 |
correct output |
---|
686766192 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 56
Verdict: RUNTIME ERROR
input |
---|
85080 21779 92819 |
correct output |
---|
114946782 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 57
Verdict: RUNTIME ERROR
input |
---|
88235 6779 56603 |
correct output |
---|
70147249 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 58
Verdict: RUNTIME ERROR
input |
---|
88858 66896 98375 |
correct output |
---|
601764178 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 59
Verdict: RUNTIME ERROR
input |
---|
50586 8901 76084 |
correct output |
---|
881324074 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 60
Verdict: RUNTIME ERROR
input |
---|
87594 26882 34225 |
correct output |
---|
42681251 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 61
Verdict: RUNTIME ERROR
input |
---|
73130 30310 55103 |
correct output |
---|
843664756 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 62
Verdict: RUNTIME ERROR
input |
---|
63584 31874 92876 |
correct output |
---|
437812641 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...
Test 63
Verdict: RUNTIME ERROR
input |
---|
88714 2531 74051 |
correct output |
---|
603847190 |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): vector::_M_r...