結果

問題 No.35 タイパー高橋
ユーザー hape8810hape8810
提出日時 2019-01-31 13:12:51
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 420 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 23,040 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-26 15:45:40
合計ジャッジ時間 796 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:8:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |     scanf("%d",&N);
      |     ~~~~~^~~~~~~~~
main.cpp:10:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   10 |         scanf("%d %s",&T,S);
      |         ~~~~~^~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
#include <string.h>

int main(void){
    int N,a,T,len;
    char S[101];
    int K=0,A=0;//K=成功 A=余り
    scanf("%d",&N);
    for(int x=0;x<N;x++){
        scanf("%d %s",&T,S);
        a=(12*T)/1000;
        len=strlen(S);
        if(a>=len){
            K+=len;
        }
        else{
            K+=a;
            A=A+(len-a);
        }
    }
    printf("%d %d\n",K,A);
    
    return 0;
}
0