結果
問題 | No.2709 1975 Powers |
ユーザー | 茅ヶ崎裕太 |
提出日時 | 2024-03-31 15:23:59 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 577 bytes |
コンパイル時間 | 350 ms |
コンパイル使用メモリ | 82,160 KB |
実行使用メモリ | 146,404 KB |
最終ジャッジ日時 | 2024-09-30 20:38:50 |
合計ジャッジ時間 | 4,890 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | OLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
ソースコード
N,P,Q=map(int,input().split()) A=list(map(int,input().split())) L=[[0 for _ in range(4)]for _ in range(N)] t=[10,9,7,5] for i in range(N):#前計算 O(800*powのやつ) for j in range(4): L[i][j]=pow(t[j],A[i],P) ans=0 for i in range(N): for j in range(i+1,N): for k in range(j+1,N): for m in range(k+1,N): print(i,j,k,m) if ( L[i][0]+ L[j][1]+ L[k][2]+ L[m][3] )%P==Q: ans+=1 print(ans)