結果
問題 | No.3019 YNeos |
ユーザー |
![]() |
提出日時 | 2025-02-14 21:24:27 |
言語 | D (dmd 2.109.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 387 bytes |
コンパイル時間 | 2,973 ms |
コンパイル使用メモリ | 64,492 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2025-02-14 21:24:37 |
合計ジャッジ時間 | 3,444 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 2 |
other | AC * 23 WA * 18 |
ソースコード
import std.algorithm, std.array, std.bigint, std.conv, std.stdio, std.typecons, std.range;void main() {auto x = readln;auto y = readln;if (x.length == y.length) {foreach (i; 0 .. y.length) {write(x[i], y[i]);}writeln;}else if (x.length == y.length+1) {foreach (i; 0 .. y.length) {write(x[i], y[i]);}write(x[$-1]);writeln;}else writeln("?");}