結果
問題 | No.495 (^^*) Easy |
ユーザー | RadPeria |
提出日時 | 2017-12-04 17:25:24 |
言語 | C (gcc 12.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 589 bytes |
コンパイル時間 | 118 ms |
コンパイル使用メモリ | 28,544 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-06 09:37:22 |
合計ジャッジ時間 | 574 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
ソースコード
#include <stdio.h> char S[100000]; void main(){ int count=0; scanf("%s", S); for(int i=0;i<100000;i++){ if(S[i]=='#'){ count = i-1; break; } } int countL=0,countR=0; for(int i=0;i<count;i++){ if(S[i]=='^'&&S[i+1]=='*'){ countL++; } if(S[i]=='*'&&S[i+1]=='^'){ countR++; } } printf("%d %d\n", countL, countR); }