結果
問題 | No.987 N×Mマス計算(基本) |
ユーザー | kikage |
提出日時 | 2020-03-06 01:51:06 |
言語 | C++11 (gcc 11.4.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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 1 ms
5,248 KB |
testcase_09 | AC | 1 ms
5,248 KB |
testcase_10 | AC | 0 ms
5,248 KB |
testcase_11 | AC | 1 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 1 ms
5,248 KB |
testcase_14 | AC | 1 ms
5,248 KB |
testcase_15 | AC | 1 ms
5,248 KB |
testcase_16 | AC | 2 ms
5,248 KB |
testcase_17 | AC | 1 ms
5,248 KB |
testcase_18 | AC | 1 ms
5,248 KB |
testcase_19 | AC | 2 ms
5,248 KB |
コンパイルメッセージ
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
ソースコード
#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; }