Submission #77259

#TimeUsernameProblemLanguageResultExecution timeMemory
77259MohamedAhmed0Secret (JOI14_secret)C++14
6 / 100
11160 ms4756 KiB
#include <bits/stdc++.h> using namespace std ; #include "secret.h" int arr[100001] ; void Init(int N, int A[]) { for(int i = 0 ; i < N ; ++i) arr[i] = A[i] ; } int Query(int l, int r) { int x = arr[l] ; for(int i = l+1 ; i <= r ; ++i) x = Secret(x , arr[i]); return x ; }
#Verdict Execution timeMemoryGrader output
Fetching results...