ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Discussion of Problem 1313. Some Words about Sport

c++ AC
Posted by amirshir 11 Jan 2015 23:22
#include <iostream>
using namespace std;
int n;
int main()
{
cin>>n ;
int y[n+1][n+1] ;
for(int i=1;i<n+1;i++)
    for(int j=1;j<n+1;j++)
        cin>>y[i][j] ;
for(int i=2;i<2*n+1;i++)
    for(int j=n;j>0;j--)
        if(i-j>0 && i-j <n+1)
            cout<<y[j][i-j]<<" ";


}
Re: c++ AC
Posted by [FALL] Levon Oganesyan [RAU] 12 Jan 2015 20:55
Don't post your code here
Re: c++ AC
Posted by Shadman Martin Piyal 13 Jul 2017 21:29
Don't post your code here mate.
Re: c++ AC
Posted by Oleg Baskakov 13 Jul 2017 23:35
Don't post your code here.
Re: c++ AC
Posted by Trần Hữu Lộc 18 Dec 2017 20:42
Không đăng mã của bạn ở đây
Oleg Baskakov wrote 13 July 2017 23:35
Don't post your code here.
Re: c++ AC
Posted by Orient 18 Dec 2017 21:14
I hope somedays you'll be punished by admins. But sadly it is abandoned autonomous automatic judging system for now.

Edited by author 18.12.2017 21:14