結果
問題 | No.987 N×Mマス計算(基本) |
ユーザー | courange_cou |
提出日時 | 2020-02-14 22:33:32 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 868 bytes |
コンパイル時間 | 207 ms |
コンパイル使用メモリ | 30,336 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-06 12:56:36 |
合計ジャッジ時間 | 973 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 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 | WA | - |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
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 | WA | - |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | WA | - |
ソースコード
#include <stdio.h> int main(){ int n,m; char op; int a[100],b[100]; long long int table[100][100]; scanf("%d %d\n",&n,&m); scanf("%c",&op); for(int i = 0;i < m;i++){ scanf("%d",&b[i]); //printf("%d ",b[i]); } for(int i = 0;i < n;i++){ scanf("%d",&a[i]); //printf("%d ",a[i]); } if(op == '+'){ for(int i = 0;i < n;i++) for(int j = 0;j < m;j++){ table[i][j] = a[i] + b[j]; //printf("%d + %d = %d\n",a[i],b[j],table[i][j]); } }else if(op == '*'){ for(int i = 0;i < n;i++) for(int j = 0;j < m;j++) table[i][j] = a[i] * b[j]; } for(int i = 0;i < n;i++){ for(int j = 0;j < m;j++){ printf("%lld",table[i][j]); if(j == m-1) continue; printf(" "); } printf("\n"); } }