結果

問題 No.854 公平なりんご分配
ユーザー CuriousFairy315CuriousFairy315
提出日時 2019-02-22 18:16:40
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 398 bytes
コンパイル時間 1,375 ms
コンパイル使用メモリ 55,504 KB
実行使用メモリ 13,768 KB
最終ジャッジ日時 2024-11-25 10:12:43
合計ジャッジ時間 104,573 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,788 KB
testcase_01 AC 2 ms
10,660 KB
testcase_02 AC 1 ms
10,664 KB
testcase_03 AC 2 ms
10,656 KB
testcase_04 AC 1 ms
13,768 KB
testcase_05 AC 2 ms
10,788 KB
testcase_06 AC 1 ms
13,764 KB
testcase_07 AC 1 ms
10,656 KB
testcase_08 AC 1 ms
13,760 KB
testcase_09 AC 2 ms
10,788 KB
testcase_10 AC 1 ms
10,660 KB
testcase_11 AC 1 ms
10,792 KB
testcase_12 AC 1 ms
10,656 KB
testcase_13 AC 2 ms
10,788 KB
testcase_14 AC 1 ms
13,760 KB
testcase_15 AC 2 ms
10,784 KB
testcase_16 AC 2 ms
13,760 KB
testcase_17 AC 2 ms
10,788 KB
testcase_18 AC 1 ms
13,764 KB
testcase_19 AC 2 ms
10,660 KB
testcase_20 AC 1 ms
10,656 KB
testcase_21 AC 2 ms
10,784 KB
testcase_22 AC 4 ms
10,784 KB
testcase_23 AC 3 ms
6,820 KB
testcase_24 AC 6 ms
6,820 KB
testcase_25 AC 3 ms
6,816 KB
testcase_26 AC 7 ms
6,816 KB
testcase_27 AC 4 ms
6,820 KB
testcase_28 AC 4 ms
6,820 KB
testcase_29 AC 2 ms
6,816 KB
testcase_30 AC 3 ms
6,820 KB
testcase_31 AC 6 ms
6,816 KB
testcase_32 AC 290 ms
6,816 KB
testcase_33 AC 502 ms
6,820 KB
testcase_34 AC 1,662 ms
6,816 KB
testcase_35 AC 849 ms
6,820 KB
testcase_36 AC 116 ms
6,816 KB
testcase_37 AC 283 ms
6,820 KB
testcase_38 AC 137 ms
6,816 KB
testcase_39 TLE -
testcase_40 AC 604 ms
6,816 KB
testcase_41 AC 875 ms
6,820 KB
testcase_42 AC 1,255 ms
6,820 KB
testcase_43 AC 1,850 ms
6,816 KB
testcase_44 AC 2,094 ms
6,820 KB
testcase_45 AC 751 ms
6,816 KB
testcase_46 TLE -
testcase_47 AC 506 ms
6,816 KB
testcase_48 AC 1,030 ms
6,820 KB
testcase_49 AC 818 ms
6,820 KB
testcase_50 AC 178 ms
6,816 KB
testcase_51 AC 3,141 ms
6,816 KB
testcase_52 AC 1,563 ms
6,816 KB
testcase_53 AC 692 ms
6,816 KB
testcase_54 AC 1,711 ms
6,820 KB
testcase_55 AC 321 ms
6,820 KB
testcase_56 AC 187 ms
6,820 KB
testcase_57 AC 515 ms
6,816 KB
testcase_58 AC 578 ms
6,820 KB
testcase_59 AC 165 ms
6,816 KB
testcase_60 AC 813 ms
6,820 KB
testcase_61 AC 117 ms
6,816 KB
testcase_62 AC 822 ms
6,816 KB
testcase_63 AC 798 ms
6,816 KB
testcase_64 AC 99 ms
6,816 KB
testcase_65 AC 654 ms
6,816 KB
testcase_66 AC 384 ms
6,816 KB
testcase_67 AC 1,364 ms
6,816 KB
testcase_68 AC 864 ms
6,816 KB
testcase_69 AC 180 ms
6,820 KB
testcase_70 AC 255 ms
6,816 KB
testcase_71 AC 334 ms
6,820 KB
testcase_72 AC 171 ms
6,816 KB
testcase_73 AC 614 ms
6,816 KB
testcase_74 AC 2,505 ms
6,820 KB
testcase_75 AC 543 ms
6,816 KB
testcase_76 AC 1,862 ms
6,816 KB
testcase_77 AC 1,888 ms
6,820 KB
testcase_78 AC 1,068 ms
6,816 KB
testcase_79 AC 1,827 ms
6,820 KB
testcase_80 AC 1,726 ms
6,816 KB
testcase_81 AC 1,255 ms
6,820 KB
testcase_82 TLE -
testcase_83 TLE -
testcase_84 TLE -
testcase_85 TLE -
testcase_86 TLE -
testcase_87 TLE -
testcase_88 TLE -
testcase_89 TLE -
testcase_90 TLE -
testcase_91 TLE -
testcase_92 TLE -
testcase_93 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:4:1: warning: ISO C++ forbids declaration of ‘main’ with no type [-Wreturn-type]
    4 | main(){
      | ^~~~

ソースコード

diff #

#include<iostream>
using namespace std;

main(){
int n;
cin >> n;
long long int a[n+1];
long long int b[n+1];
a[0]=1;
//b[0]=1;
for(int i=1;i<=n;i++){
cin >> a[i];
//b[i]=b[i-1]*a[i];
}
int q;
cin >> q;
int p,l,r;
for(int i=0;i<q;i++){
cin >> p >> l >> r;
int x=1;
for(int i=l;i<=r;i++){
x=x*a[i]%p;
}
if( x==0 ){
cout << "Yes" <<endl;
}else{
cout << "NO" <<endl;
}
}

} // 前テスターコード
0