結果
| 問題 | No.3294 UECoder |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-10-05 13:31:02 |
| 言語 | D (dmd 2.112.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| + 186µs | |
| コード長 | 332 bytes |
| 記録 | |
| コンパイル時間 | 2,246 ms |
| コンパイル使用メモリ | 210,432 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-15 11:12:03 |
| 合計ジャッジ時間 | 3,870 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 20 |
ソースコード
import std;
void main () {
int N = readln.chomp.to!int;
string S = readln.chomp;
writeln("UEC", S.split('c')[1]);
}
void read (T...) (string S, ref T args) {
import std.conv : to;
import std.array : split;
auto buf = S.split;
foreach (i, ref arg; args) {
arg = buf[i].to!(typeof(arg));
}
}