結果

問題 No.854 公平なりんご分配
ユーザー bal4ubal4u
提出日時 2019-07-27 05:04:46
言語 C
(gcc 12.3.0)
結果
TLE  
実行時間 -
コード長 552 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 30,208 KB
実行使用メモリ 13,888 KB
最終ジャッジ日時 2024-07-02 10:43:11
合計ジャッジ時間 55,945 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
8,608 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 4 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 5 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 4 ms
5,376 KB
testcase_32 AC 286 ms
5,376 KB
testcase_33 AC 495 ms
5,376 KB
testcase_34 AC 1,654 ms
5,376 KB
testcase_35 AC 854 ms
5,376 KB
testcase_36 AC 86 ms
5,376 KB
testcase_37 AC 277 ms
5,376 KB
testcase_38 AC 131 ms
5,376 KB
testcase_39 TLE -
testcase_40 AC 589 ms
5,376 KB
testcase_41 AC 871 ms
5,376 KB
testcase_42 AC 1,246 ms
5,376 KB
testcase_43 AC 1,833 ms
5,376 KB
testcase_44 AC 2,110 ms
5,376 KB
testcase_45 AC 701 ms
5,376 KB
testcase_46 TLE -
testcase_47 AC 505 ms
5,376 KB
testcase_48 AC 1,004 ms
5,376 KB
testcase_49 AC 829 ms
5,376 KB
testcase_50 AC 172 ms
6,940 KB
testcase_51 TLE -
testcase_52 AC 1,539 ms
6,940 KB
testcase_53 AC 674 ms
5,376 KB
testcase_54 AC 1,703 ms
5,376 KB
testcase_55 AC 312 ms
5,376 KB
testcase_56 AC 181 ms
5,376 KB
testcase_57 AC 495 ms
5,376 KB
testcase_58 AC 537 ms
5,376 KB
testcase_59 AC 158 ms
5,376 KB
testcase_60 AC 791 ms
5,376 KB
testcase_61 AC 94 ms
5,376 KB
testcase_62 AC 791 ms
5,376 KB
testcase_63 AC 774 ms
5,376 KB
testcase_64 AC 87 ms
5,376 KB
testcase_65 AC 640 ms
5,376 KB
testcase_66 AC 356 ms
5,376 KB
testcase_67 AC 1,354 ms
5,376 KB
testcase_68 AC 811 ms
5,376 KB
testcase_69 AC 173 ms
5,376 KB
testcase_70 AC 240 ms
5,376 KB
testcase_71 AC 321 ms
5,376 KB
testcase_72 AC 130 ms
5,376 KB
testcase_73 AC 592 ms
5,376 KB
testcase_74 AC 2,495 ms
5,376 KB
testcase_75 AC 541 ms
5,376 KB
testcase_76 AC 1,868 ms
5,376 KB
testcase_77 AC 1,914 ms
5,376 KB
testcase_78 AC 1,022 ms
5,376 KB
testcase_79 AC 1,825 ms
5,376 KB
testcase_80 AC 1,707 ms
5,376 KB
testcase_81 AC 1,243 ms
5,376 KB
testcase_82 TLE -
testcase_83 -- -
testcase_84 -- -
testcase_85 -- -
testcase_86 -- -
testcase_87 -- -
testcase_88 -- -
testcase_89 -- -
testcase_90 -- -
testcase_91 -- -
testcase_92 -- -
testcase_93 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function 'in':
main.c:7:14: warning: implicit declaration of function 'getchar_unlocked' [-Wimplicit-function-declaration]
    7 | #define gc() getchar_unlocked()
      |              ^~~~~~~~~~~~~~~~
main.c:13:24: note: in expansion of macro 'gc'
   13 |         int n = 0, c = gc();
      |                        ^~

ソースコード

diff #

// yukicoder: No.854 公平なりんご分配
// 2019.7.27 bal4u

#include <stdio.h>

#if 1
#define gc() getchar_unlocked()
#else
#define gc() getchar()
#endif

int in() {   // 非負整数の入力
	int n = 0, c = gc();
	do n = 10 * n + (c & 0xf); while ((c = gc()) >= '0');
	return n;
}

int a[100005], N;

int main()
{
	int i, t, Q, P, L, R;

	N = in(); for (i = 1; i <= N; i++) a[i] = in();
	Q = in(); while (Q--) {
		P = in(), L = in(), R = in();
		t = 1; for (i = L; i <= R; i++) t = (long long)t*a[i] % P;
		puts(t? "NO": "Yes");
	}
	return 0;
}
0