結果
問題 |
No.854 公平なりんご分配
|
ユーザー |
![]() |
提出日時 | 2019-07-26 23:19:11 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 233 bytes |
コンパイル時間 | 233 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 301,112 KB |
最終ジャッジ日時 | 2024-07-02 09:38:39 |
合計ジャッジ時間 | 6,905 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 1 |
other | AC * 1 WA * 29 TLE * 1 -- * 61 |
ソースコード
n=int(input()) l=[1]+list(map(int,input().split())) for i in range(1,n+1): l[i]*=l[i-1] q=int(input()) for i in range(q): p,L,R=map(int,input().split()) if l[R]//l[L]>=p: print("Yes") else: print("No")