コンテストの制限時間が終了しました。
以降も提出を行うことができますが、順位集計には反映されません。
以降も提出を行うことができますが、順位集計には反映されません。
ソースコード
select
emp_code as CODE,
emp_last_name as SURNAME,
emp_first_name as NAME
from emp as x
where exists (
select y.emp_code from emp as y
where y.emp_code <> x.emp_code
and REPLACE(y.emp_last_name, ' ', '') = REPLACE(x.emp_last_name, ' ', '')
and REPLACE(y.emp_first_name, ' ', '') = REPLACE(x.emp_first_name, ' ', '')
)
order by REPLACE(x.emp_last_name, ' ', ''), REPLACE(x.emp_first_name, ' ', ''), x.emp_code
提出情報
提出日時 | 2023/02/18 18:47:05 |
コンテスト | 第5回 SQLコンテスト |
問題 | 同姓同名抽出 |
受験者 | yowano |
状態 (詳細) | WA (Wrong Answer: 誤答) |
メモリ使用量 | 77 MB |
メッセージ
テストケース(通過数/総数)
0/3
状態
メモリ使用量
データパターン1
WA
75 MB
データパターン2
WA
76 MB
データパターン3
WA
77 MB