結果
問題 | No.495 (^^*) Easy |
ユーザー | N/A |
提出日時 | 2018-09-04 02:04:23 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 6 ms / 2,000 ms |
コード長 | 377 bytes |
コンパイル時間 | 301 ms |
コンパイル使用メモリ | 27,904 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-10 19:22:02 |
合計ジャッジ時間 | 888 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,820 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,816 KB |
testcase_03 | AC | 1 ms
6,816 KB |
testcase_04 | AC | 1 ms
6,820 KB |
testcase_05 | AC | 1 ms
6,816 KB |
testcase_06 | AC | 6 ms
6,816 KB |
ソースコード
#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> int main(void) { int right = 0, left = 0, hat = 0; char acter; while (acter != '#') { scanf("%c", &acter); if (acter == '(') hat = 0; else if (acter == '^') hat++; else if (acter == '*') { if (hat == 0) right++; else if (hat == 2) left++; } } printf("%d %d\n", left, right); return 0; }