結果
| 問題 | 
                            No.1336 Union on Blackboard
                             | 
                    
| コンテスト | |
| ユーザー | 
                             GER_chen
                         | 
                    
| 提出日時 | 2021-01-22 13:42:21 | 
| 言語 | Python3  (3.13.1 + numpy 2.2.1 + scipy 1.14.1)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 225 bytes | 
| コンパイル時間 | 485 ms | 
| コンパイル使用メモリ | 12,416 KB | 
| 実行使用メモリ | 10,752 KB | 
| 最終ジャッジ日時 | 2024-12-26 12:23:33 | 
| 合計ジャッジ時間 | 3,069 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge5 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | WA * 1 | 
| other | WA * 31 | 
ソースコード
#yuki-1336
mod = 10**9+7
T = int(input())  #100以下
for _ in range(T):
    ans = 1
    N = int(input())  #100以下
    A = list(map(int, input().split()))  #200以下
    for a in A:
        ans = a*ans%mod
    print(ans)
            
            
            
        
            
GER_chen