ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#128643 | #1654. 打印乘法口诀金字塔 | Nick11 | 100 | 0ms | 1200kb | C++ | 358b | 2021-04-24 11:51:06 | 2021-04-24 11:51:08 |
answer
详细
小提示:点击横条可展开更详细的信息
Test #1:
score: 20
Accepted
time: 0ms
memory: 1200kb
input:
5
output:
5*5=25 4*4=16 4*5=20 3*3=9 3*4=12 3*5=15 ...
result:
ok 5 lines
Test #2:
score: 20
Accepted
time: 0ms
memory: 1196kb
input:
2
output:
2*2=4 1*1=1 1*2=2
result:
ok 2 lines
Test #3:
score: 20
Accepted
time: 0ms
memory: 1200kb
input:
9
output:
9*9=81 8*8=64 8*9=72 ...
result:
ok 9 lines
Test #4:
score: 20
Accepted
time: 0ms
memory: 1196kb
input:
20
output:
20*20...
result:
ok 20 lines
Test #5:
score: 20
Accepted
time: 0ms
memory: 1196kb
input:
1
output:
1*1=1
result:
ok single line: '1*1=1 '