結果
問題 | No.346 チワワ数え上げ問題 |
ユーザー | mai |
提出日時 | 2016-02-26 23:20:42 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 551 bytes |
コンパイル時間 | 728 ms |
コンパイル使用メモリ | 64,144 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-22 23:47:37 |
合計ジャッジ時間 | 3,563 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
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 | WA | - |
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,940 KB |
testcase_25 | AC | 2 ms
6,944 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; int fact(int n){int i,j;for(i=1,j=1;i<n;j*=i)i++;return j;} int combi(int x,int k){return fact(x)/(fact(k)*fact(x-k));} int main(){ char c; int i,w,j,n; int s[100005]; i=0; while(cin>>c){ s[i++]=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; }