結果
| 問題 | 
                            No.373 かけ算と割った余り
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2018-06-21 14:41:19 | 
| 言語 | C  (gcc 13.3.0)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 190 bytes | 
| コンパイル時間 | 123 ms | 
| コンパイル使用メモリ | 28,544 KB | 
| 実行使用メモリ | 5,376 KB | 
| 最終ジャッジ日時 | 2024-06-30 17:35:50 | 
| 合計ジャッジ時間 | 579 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge3 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 | 
| other | AC * 3 WA * 2 | 
ソースコード
#include<stdio.h>
int main(void){
    unsigned long num[4];
    for (int i = 0; i < 4; i++){
        scanf("%d",&num[i]);
    }
    printf("%d",(num[0] * num[1] * num[2] % num[3]));
}