結果
問題 | No.495 (^^*) Easy |
ユーザー | 57tggx |
提出日時 | 2017-04-06 21:31:01 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 187 bytes |
コンパイル時間 | 213 ms |
コンパイル使用メモリ | 22,528 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-17 21:38:07 |
合計ジャッジ時間 | 1,404 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | WA | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:7:23: warning: ‘S’ is used uninitialized [-Wuninitialized] 7 | for(i = 0; S[i] != '#'; i += 5){ | ~~~^ main.cpp:4:14: note: ‘S’ declared here 4 | char S[100000]; | ^
ソースコード
#include <stdio.h> int main(){ char S[100000]; unsigned i; unsigned l = 0, r = 0; for(i = 0; S[i] != '#'; i += 5){ if(S[i+1] == '^') l++; else r++; } printf("%d %d\n", l, r); }