結果
問題 | No.5013 セクスタプル (open) |
ユーザー |
![]() |
提出日時 | 2022-12-29 14:04:49 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 377 bytes |
コンパイル時間 | 1,604 ms |
実行使用メモリ | 5,164 KB |
スコア | 3,713 |
最終ジャッジ日時 | 2022-12-29 14:05:18 |
合計ジャッジ時間 | 5,861 ms |
ジャッジサーバーID (参考情報) |
judge15 / judge11 |
純コード判定しない問題か言語 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 100 |
ソースコード
#include<bits/stdc++.h> #define REP(i, n) for (int i = 0; i < (int)(n); i++) using ll = long long; using namespace std; struct Input { array<array<int, 6>, 36> in; Input() { REP(i, 36)REP(j, 6) { cin >> in[i][j]; } } void Solve() { REP(i, 6)REP(j, 6) { cout << i + 1 << " " << j + 1 << endl; } } }; int main() { Input in; in.Solve(); }