結果

問題 No.78 クジ付きアイスバー
ユーザー goodbatongoodbaton
提出日時 2014-11-26 01:06:23
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 943 bytes
コンパイル時間 743 ms
コンパイル使用メモリ 71,256 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-16 04:54:08
合計ジャッジ時間 1,881 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 WA -
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 1 ms
5,376 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 WA -
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 1 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:18:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   18 |     scanf("%d%d%s",&n,&k,s);
      |     ~~~~~^~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <cstdio>
#include <cstdlib>
#include <iostream>
#include <string>
#include <cmath>
#include <algorithm>
#include <vector>
#include <queue>
#include <stack>
#include <map>

using namespace std;

int n,k,ans,atari,ataris;
char s[51];

int main(){
    scanf("%d%d%s",&n,&k,s);
    
    for(int i=0;i<n;i++){
        if(atari){
            atari--;
        }
        else
            ans++;
        
        if(s[i%n]!='0'){
            atari+=s[i%n]-'0';
            ataris+=s[i%n]-'0';
        }
    }
    
    ans=max(ans-atari,1)+(k/n-1)*max(n-ataris,0);
    
    atari=max((ataris-n)*(k/n-1)+atari,0);
    
    if(k<n)
        ans=atari=0;
    
    for(int i=0;i<k%n;i++){
        if(atari)
            atari--;
        else
            ans++;
        
        if(s[i%n]!='0'){
            atari+=s[i%n]-'0';
        }
    }
    
    
    printf("%d\n",ans);
    
    return 0;
}
0