Submission #63982687


Source Code Expand

Copy
#include <stdio.h>
#include <stdlib.h>
#include <limits.h>
const char taiou[1 << CHAR_BIT] = {
[(unsigned char)'('] = ')',
[(unsigned char)'['] = ']',
[(unsigned char)'<'] = '>',
};
char S[212345];
char stack[212345];
int main(void) {
int i, sp = -1;
if (scanf("%212344s", S) != 1) return 1;
for (i = 0; S[i] != '\0'; i++) {
if (taiou[(unsigned char)S[i]] != 0) {
stack[++sp] = taiou[(unsigned char)S[i]];
} else {
 
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
#include <stdio.h>
#include <stdlib.h>
#include <limits.h>

const char taiou[1 << CHAR_BIT] = {
	[(unsigned char)'('] = ')',
	[(unsigned char)'['] = ']',
	[(unsigned char)'<'] = '>',
};

char S[212345];

char stack[212345];

int main(void) {
	int i, sp = -1;
	if (scanf("%212344s", S) != 1) return 1;
	for (i = 0; S[i] != '\0'; i++) {
		if (taiou[(unsigned char)S[i]] != 0) {
			stack[++sp] = taiou[(unsigned char)S[i]];
		} else {
			if (sp < 0 || stack[sp] != S[i]) {
				puts("No");
				return 0;
			}
			sp--;
		}
	}
	puts("Yes");
	return 0;
}

Submission Info

Submission Time
Task D - Colorful Bracket Sequence
User mikecat
Language C (gcc 12.2.0)
Score 0
Code Size 579 Byte
Status WA
Exec Time 2 ms
Memory 1868 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 400
Status
AC × 3
AC × 37
WA × 3
Set Name Test Cases
Sample example_00.txt, example_01.txt, example_02.txt
All example_00.txt, example_01.txt, example_02.txt, hand_00.txt, hand_01.txt, hand_02.txt, hand_03.txt, hand_04.txt, hand_05.txt, hand_06.txt, random_00.txt, random_01.txt, random_02.txt, random_03.txt, random_04.txt, random_05.txt, random_06.txt, random_07.txt, random_08.txt, random_09.txt, random_10.txt, random_11.txt, random_12.txt, random_13.txt, random_14.txt, random_15.txt, random_16.txt, random_17.txt, random_18.txt, random_19.txt, random_20.txt, random_21.txt, random_22.txt, random_23.txt, random_24.txt, random_25.txt, random_26.txt, random_27.txt, random_28.txt, random_29.txt
Case Name Status Exec Time Memory
example_00.txt AC 0 ms 1624 KB
example_01.txt AC 0 ms 1604 KB
example_02.txt AC 0 ms 1504 KB
hand_00.txt AC 1 ms 1852 KB
hand_01.txt AC 1 ms 1828 KB
hand_02.txt WA 1 ms 1836 KB
hand_03.txt AC 0 ms 1576 KB
hand_04.txt WA 1 ms 1844 KB
hand_05.txt AC 0 ms 1520 KB
hand_06.txt WA 0 ms 1484 KB
random_00.txt AC 1 ms 1724 KB
random_01.txt AC 1 ms 1848 KB
random_02.txt AC 1 ms 1824 KB
random_03.txt AC 1 ms 1724 KB
random_04.txt AC 1 ms 1764 KB
random_05.txt AC 1 ms 1680 KB
random_06.txt AC 1 ms 1764 KB
random_07.txt AC 1 ms 1708 KB
random_08.txt AC 1 ms 1720 KB
random_09.txt AC 1 ms 1868 KB
random_10.txt AC 1 ms 1792 KB
random_11.txt AC 1 ms 1700 KB
random_12.txt AC 1 ms 1724 KB
random_13.txt AC 1 ms 1700 KB
random_14.txt AC 1 ms 1648 KB
random_15.txt AC 1 ms 1696 KB
random_16.txt AC 1 ms 1720 KB
random_17.txt AC 1 ms 1828 KB
random_18.txt AC 2 ms 1796 KB
random_19.txt AC 1 ms 1684 KB
random_20.txt AC 2 ms 1672 KB
random_21.txt AC 2 ms 1700 KB
random_22.txt AC 2 ms 1772 KB
random_23.txt AC 2 ms 1692 KB
random_24.txt AC 2 ms 1744 KB
random_25.txt AC 1 ms 1692 KB
random_26.txt AC 2 ms 1832 KB
random_27.txt AC 2 ms 1692 KB
random_28.txt AC 2 ms 1740 KB
random_29.txt AC 1 ms 1704 KB


2025-03-21 (Fri)
00:20:16 +09:00