QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#52840 | #1806. Character Grid | Tain_U# | WA | 0ms | 3676kb | C++ | 417b | 2022-10-04 15:30:02 | 2022-10-04 15:30:09 |
Judging History
answer
#include<iostream>
#include<algorithm>
#include<cstdio>
using namespace std;
int a[14][14];
int main(){
for(int i=0;i<13;i++){
for(int j=0;j<=i;j++){
int x=i-j,y=j;
a[x][y]=(i*(i+1)/2+j)%26;
a[12-y][12-x]=a[x][y];
}
}
for(int i=0;i<13;i++){
for(int j=0;j<13;j++)printf("%c",a[i][j]+'a');printf("\n");
}
return 0;
}
詳細信息
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3676kb
input:
output:
acfjoubjscnzm beintairbmylz dhmszhqalxkyn glrygpzkwjxmc kqxfoyjviwlbs pwenxiuhvkarj vdmwhtgujzqib clvgsftiyphau kufreshxogzto teqdrgwnfysnj dpcqfvmexrmif obpeuldwqlhec aodtkcvpkgdba
result:
wrong output format Expected integer, but "acfjoubjscnzm" found