aboutsummaryrefslogtreecommitdiffhomepage
path: root/q4.sql
diff options
context:
space:
mode:
Diffstat (limited to 'q4.sql')
-rw-r--r--q4.sql104
1 files changed, 104 insertions, 0 deletions
diff --git a/q4.sql b/q4.sql
new file mode 100644
index 0000000..6758e17
--- /dev/null
+++ b/q4.sql
@@ -0,0 +1,104 @@
+INSERT INTO testcases (problem_id, stdin, stdout)
+VALUES
+ (21, '0', '0'),
+ (21, '-100', '10000'),
+ (21, '123', '15129');
+
+INSERT INTO testcases (problem_id, stdin, stdout)
+VALUES
+ (22, $$9 3
+$$, $$ 1 2 3 4 5 6 7 8 9
+ 2 4 6 8 10 12 14 16 18
+ 3 6 9 12 15 18 21 24 27
+$$),
+ (22, $$10 20
+$$, $$ 1 2 3 4 5 6 7 8 9 10
+ 2 4 6 8 10 12 14 16 18 20
+ 3 6 9 12 15 18 21 24 27 30
+ 4 8 12 16 20 24 28 32 36 40
+ 5 10 15 20 25 30 35 40 45 50
+ 6 12 18 24 30 36 42 48 54 60
+ 7 14 21 28 35 42 49 56 63 70
+ 8 16 24 32 40 48 56 64 72 80
+ 9 18 27 36 45 54 63 72 81 90
+ 10 20 30 40 50 60 70 80 90 100
+ 11 22 33 44 55 66 77 88 99 110
+ 12 24 36 48 60 72 84 96 108 120
+ 13 26 39 52 65 78 91 104 117 130
+ 14 28 42 56 70 84 98 112 126 140
+ 15 30 45 60 75 90 105 120 135 150
+ 16 32 48 64 80 96 112 128 144 160
+ 17 34 51 68 85 102 119 136 153 170
+ 18 36 54 72 90 108 126 144 162 180
+ 19 38 57 76 95 114 133 152 171 190
+ 20 40 60 80 100 120 140 160 180 200
+$$);
+
+INSERT INTO testcases (problem_id, stdin, stdout)
+VALUES
+ (23, $$るりいろ
+りぬる
+いちにち
+ほへとちに
+いち
+ほとはろ
+りにへ
+いい
+いいい
+とりほい
+いろ
+いろいろ
+$$, $$いい
+いいい
+いろ
+いろいろ
+いち
+いちにち
+るりいろ
+ほへとちに
+ほとはろ
+とりほい
+りにへ
+りぬる
+$$);
+
+INSERT INTO testcases (problem_id, stdin, stdout)
+VALUES
+ (24, $$Foo,zzz
+Foo,xxx
+Bar,ccc
+Bar,bbb
+Foo,yyy
+Bar,"a, aa, aaa"
+Bar,aaa
+Foo,"hello, world"
+$$, $$Bar,"a, aa, aaa",aaa,bbb,ccc
+Foo,"hello, world",xxx,yyy,zzz
+$$);
+
+INSERT INTO testcases (problem_id, stdin, stdout)
+VALUES
+ (25, $$リンゴ
+ライオン
+ゴリラ
+$$, $$リンゴ
+ゴリラ
+ライオン
+負けました
+$$),
+ (25, $$リンゴ
+ライオン
+ゴリラ
+$$, $$リンゴ
+ゴリラ
+ライオン
+負けました
+$$);
+
+INSERT INTO testcases (problem_id, stdin, stdout)
+VALUES
+ (26, $$ABC
+Hello, world
+$$, $$7
+47
+$$);