結果
| 問題 |
No.2731 Two Colors
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-04-20 01:04:30 |
| 言語 | D (dmd 2.109.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 244 bytes |
| コンパイル時間 | 2,651 ms |
| コンパイル使用メモリ | 93,568 KB |
| 実行使用メモリ | 27,136 KB |
| 最終ジャッジ日時 | 2024-10-11 19:51:41 |
| 合計ジャッジ時間 | 6,073 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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 string[][M];
foreach (x; 0 .. M) {
A[x] = readln.chomp.split;
}
}