結果
問題 | No.346 チワワ数え上げ問題 |
ユーザー | mai |
提出日時 | 2016-02-26 23:34:46 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 602 bytes |
コンパイル時間 | 510 ms |
コンパイル使用メモリ | 64,156 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-23 02:23:09 |
合計ジャッジ時間 | 2,869 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | WA | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | AC | 8 ms
6,940 KB |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | AC | 2 ms
6,940 KB |
testcase_24 | AC | 2 ms
6,944 KB |
testcase_25 | AC | 2 ms
6,940 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:24:9: warning: ‘w’ may be used uninitialized in this function [-Wmaybe-uninitialized] 24 | if (w<=1) break; | ^~
ソースコード
#include <iostream> #include <cstdio> #include <cmath> #include <vector> #include <algorithm> using namespace std; long long fact(long long n){long long i,j;for(i=1ll,j=1ll;i<n;j*=i)i++;return j;} long long combi(long long x,long long k){return fact(x)/(fact(k)*fact(x-k));} int main(){ char c; long long i,w,j,n; int s[100050]; i=0; while(cin>>c){ s[i++]=(int)c; if (c=='w') w+=1; } n=0; for (j=0;j<i;j++){ if (w<=1) break; if (s[j]=='c') n+=combi(w,2); if (s[j]=='w') w-=1; } cout<<n<<endl; return 0; }