Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|---|
142739 | 冼俊烨 | 舞林大会 | C++ | Accepted | 100 | 0 MS | 252 KB | 154 | 2024-04-09 13:37:49 |
#include<bits/stdc++.h> using namespace std; int main() { int n,m,k; cin>>m>>n>>k; cout<<(k-1)%m+1<<" "<<(k-1)%n+1; return 0; }//F