Submission #11154097


Source Code Expand

#include<bits/stdc++.h>
using namespace std;
int main()
{
    long long  b,p,k,ans;
    cin>>b>>p>>k; 
    ans=b%k;
    for(int i=2;i<=p;i++)
    {
        ans=ans*b%k;
    }
    cout<<b<<'^'<<p<<" "<<"mod "<<k<<"="<<ans;
    return 0;
}

Submission Info

Submission Time
Task B - n^p mod m
User luogu_bot3
Language C++ (GCC 5.4.1)
Score 0
Code Size 250 Byte
Status WA
Exec Time 2106 ms
Memory 256 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 100
Status AC
WA × 19
TLE × 10
Set Name Test Cases
Sample
All 001.txt, 002.txt, 003.txt, 004.txt, 005.txt, 006.txt, 007.txt, 008.txt, 009.txt, 010.txt, 011.txt, 012.txt, 013.txt, 014.txt, 015.txt, 016.txt, 017.txt, 018.txt, 019.txt, 020.txt, 021.txt, 022.txt, 023.txt, 024.txt, 025.txt, 026.txt, 027.txt, sample_01.txt, sample_02.txt
Case Name Status Exec Time Memory
001.txt WA 1 ms 256 KB
002.txt WA 1 ms 256 KB
003.txt WA 1 ms 256 KB
004.txt WA 1 ms 256 KB
005.txt WA 1 ms 256 KB
006.txt WA 9 ms 256 KB
007.txt WA 16 ms 256 KB
008.txt WA 11 ms 256 KB
009.txt WA 14 ms 256 KB
010.txt WA 10 ms 256 KB
011.txt TLE 2103 ms 256 KB
012.txt TLE 2103 ms 256 KB
013.txt TLE 2103 ms 256 KB
014.txt TLE 2103 ms 256 KB
015.txt TLE 2103 ms 256 KB
016.txt WA 893 ms 256 KB
017.txt TLE 2103 ms 256 KB
018.txt WA 1161 ms 256 KB
019.txt TLE 2103 ms 256 KB
020.txt WA 1109 ms 256 KB
021.txt WA 1 ms 256 KB
022.txt WA 1 ms 256 KB
023.txt TLE 2103 ms 256 KB
024.txt WA 1271 ms 256 KB
025.txt WA 1 ms 256 KB
026.txt WA 1 ms 256 KB
027.txt TLE 2106 ms 256 KB
sample_01.txt WA 1 ms 256 KB
sample_02.txt TLE 2103 ms 256 KB