首页
DreamJudge
院校信息
考研初试
考研复试
保研专区
讨论区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
Syou
2023年8月17日 12:41
矩阵位置 题解:
P1543
回复 0
|
赞 0
|
浏览 1.5k
C++ #include <iostream> #include <vector> #include <algorithm> #include <string> using namespace std; int main(){ int n; int hang, lie; while(cin >> n){ hang = (n - 1) / 3 + 1; lie = (n - 1) % 3 + 1; cout << hang << " " << l...
SKYBQL
2021年8月27日 21:39
矩阵位置
P1543
回复 0
|
赞 3
|
浏览 6.6k
#include int main() { int n; int i,j; while(scanf("%d",&n)!=EOF) { i=n/3; if(n%3!=0) i++; &n...
1
2
题目
矩阵位置
题解数量
12
发布题解
在线答疑
热门题解
1
矩阵位置 题解:C++
2
矩阵位置 题解:
3
矩阵位置 题解:
4
矩阵位置
5
矩阵位置 题解:暴力
6
what can I say
7
矩阵位置 题解:
8
矩阵位置 题解:
9
矩阵位置 题解:
10
C++