結果
| 問題 |
No.2731 Two Colors
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-04-20 01:05:06 |
| 言語 | D (dmd 2.109.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 314 bytes |
| コンパイル時間 | 2,281 ms |
| コンパイル使用メモリ | 93,116 KB |
| 実行使用メモリ | 14,948 KB |
| 最終ジャッジ日時 | 2024-10-11 19:52:32 |
| 合計ジャッジ時間 | 6,041 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 33 |
ソースコード
import std.conv, std.stdio, std.string;
void main() {
string[] tokens = readln.chomp.split;
const M = tokens[0].to!int;
const N = tokens[1].to!int;
auto A = new int[][](M, N);
foreach (x; 0 .. M) {
tokens = readln.chomp.split;
foreach (y; 0 .. N) {
A[x][y] = tokens[y].to!int;
}
}
}