結果
問題 | No.495 (^^*) Easy |
ユーザー | RadPeria |
提出日時 | 2017-12-04 17:25:49 |
言語 | C (gcc 13.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 573 bytes |
コンパイル時間 | 196 ms |
コンパイル使用メモリ | 29,056 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-28 15:12:45 |
合計ジャッジ時間 | 579 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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]; int count=0; int countL=0,countR=0; void main(){ scanf("%s", S); for(int i=0;i<100000;i++){ if(S[i]=='#'){ count = i-1; break; } } 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); }