結果
問題 | No.495 (^^*) Easy |
ユーザー | sper_air_reader |
提出日時 | 2017-12-17 04:59:14 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 212 bytes |
コンパイル時間 | 1,694 ms |
コンパイル使用メモリ | 165,700 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-08 18:13:50 |
合計ジャッジ時間 | 3,440 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
ソースコード
#include<bits/stdc++.h> using namespace std; int main(){ int a=0,b=0; string s; scanf("%s",s); for(int i=1;i<s.size();i+=5){ if(s[i]=='^')a++; else b++; } printf("%d %d",&a,&b); return 0; }