Submission #3136329
Source Code Expand
Copy
#include<iostream> using namespace std; int main() { long long n,k; cin >> n >> k; int extra0=0, extra2k=0; for(int i=1;i<=n;i++) { if(i%k==0) extra0++; } if(k%2==0) { for(int i=1;i<=n;i++) { if(i%k==k/2) extra2k++; cout << extra0*extra0*extra0 + extra2k*extra2k*extra2k << endl; } } else { cout << extra0*extra0*extra0 << endl; } }
Submission Info
Submission Time | |
---|---|
Task | C - Triangular Relationship |
User | Kobalt |
Language | C++14 (GCC 5.4.1) |
Score | 0 |
Code Size | 382 Byte |
Status | WA |
Exec Time | 305 ms |
Memory | 2432 KB |
Judge Result
Set Name | Sample | All | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
Score / Max Score | 0 / 0 | 0 / 300 | ||||||||
Status |
|
|
Set Name | Test Cases |
---|---|
Sample | s1.txt, s2.txt, s3.txt, s4.txt |
All | 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, 11.txt, 12.txt, 13.txt, 14.txt, s1.txt, s2.txt, s3.txt, s4.txt |
Case Name | Status | Exec Time | Memory |
---|---|---|---|
01.txt | WA | 3 ms | 256 KB |
02.txt | WA | 305 ms | 2432 KB |
03.txt | WA | 3 ms | 256 KB |
04.txt | WA | 288 ms | 1408 KB |
05.txt | AC | 2 ms | 256 KB |
06.txt | AC | 2 ms | 256 KB |
07.txt | WA | 152 ms | 384 KB |
08.txt | AC | 1 ms | 256 KB |
09.txt | AC | 1 ms | 256 KB |
10.txt | WA | 153 ms | 1280 KB |
11.txt | WA | 17 ms | 384 KB |
12.txt | WA | 2 ms | 256 KB |
13.txt | AC | 3 ms | 256 KB |
14.txt | WA | 119 ms | 896 KB |
s1.txt | WA | 1 ms | 256 KB |
s2.txt | AC | 1 ms | 256 KB |
s3.txt | AC | 2 ms | 256 KB |
s4.txt | WA | 55 ms | 512 KB |