結果
問題 | No.495 (^^*) Easy |
ユーザー | sper_air_reader |
提出日時 | 2017-12-17 04:43:56 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 210 bytes |
コンパイル時間 | 1,651 ms |
コンパイル使用メモリ | 166,452 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-05-08 18:11:50 |
合計ジャッジ時間 | 2,782 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:11:9: warning: 'r' may be used uninitialized [-Wmaybe-uninitialized] 11 | printf("%d %d",l,r); | ~~~~~~^~~~~~~~~~~~~ main.cpp:5:9: note: 'r' was declared here 5 | int l,r; | ^ main.cpp:11:9: warning: 'l' may be used uninitialized [-Wmaybe-uninitialized] 11 | printf("%d %d",l,r); | ~~~~~~^~~~~~~~~~~~~ main.cpp:5:7: note: 'l' was declared here 5 | int l,r; | ^
ソースコード
#include<bits/stdc++.h> using namespace std; int main(){ char s[16]; int l,r; scanf("%s",&s); for(int i=0;s[i];i+=5){ if(s[i]=='^')l++; if(s[i]=='*')r++; } printf("%d %d",l,r); return 0; }