結果

問題 No.987 N×Mマス計算(基本)
ユーザー kikage
提出日時 2020-03-06 01:51:06
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 639 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 23,552 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-14 02:31:19
合計ジャッジ時間 959 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 18
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:7:34: warning: format ‘%ld’ expects argument of type ‘long int*’, but argument 2 has type ‘long long int*’ [-Wformat=]
    7 |     for(int i=0;i<M;i++)scanf("%ld",&B[i]);
      |                                ~~^  ~~~~~
      |                                  |  |
      |                                  |  long long int*
      |                                  long int*
      |                                %lld
main.cpp:8:34: warning: format ‘%ld’ expects argument of type ‘long int*’, but argument 2 has type ‘long long int*’ [-Wformat=]
    8 |     for(int i=0;i<N;i++)scanf("%ld",&A[i]);
      |                                ~~^  ~~~~~
      |                                  |  |
      |                                  |  long long int*
      |                                  long int*
      |                                %lld
main.cpp:13:27: warning: format ‘%ld’ expects argument of type ‘long int’, but argument 2 has type ‘long long int’ [-Wformat=]
   13 |                 printf("%ld",A[i]+B[k]);
      |                         ~~^  ~~~~~~~~~
      |                           |      |
      |                           |      long long int
      |                           long int
      |                         %lld
main.cpp:21:27: warning: format ‘%ld’ expects argument of type ‘long int’, but argument 2 has type ‘long long int’ [-Wformat=]
   21 |                 printf("%ld",A[i]*B[k]);
      |                         ~~^  ~~~~~~~~~
      |                           |      |
      |                           |      long long int
      |                           long int
      |                         %lld
main.cpp:6:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    6 |     scanf("%d %d %c",&N,&M,&op);
      |     ~~~~~^~~~~~~~~~~~~~~~~~~~~~
main.cpp:7:30: warn

ソースコード

diff #

#include <cstdio>
int main(){
    int N,M;
    long long A[100],B[100];
    char op;
    scanf("%d %d %c",&N,&M,&op);
    for(int i=0;i<M;i++)scanf("%ld",&B[i]);
    for(int i=0;i<N;i++)scanf("%ld",&A[i]);
    if(op=='+'){
        for(int i=0;i<N;i++){
            for(int k=0;k<M;k++){
                if(k>0)printf(" ");
                printf("%ld",A[i]+B[k]);
            }
            printf("\n");
        }
    }else {
        for(int i=0;i<N;i++){
            for(int k=0;k<M;k++){
                if(k>0)printf(" ");
                printf("%ld",A[i]*B[k]);
            }
            printf("\n");
        }
    }
    return 0;
}
0