結果
| 問題 | No.1735 C# |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-04-02 11:33:46 |
| 言語 | TypeScript (6.0.2) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 191 bytes |
| 記録 | |
| コンパイル時間 | 4,691 ms |
| コンパイル使用メモリ | 345,740 KB |
| 実行使用メモリ | 52,688 KB |
| 最終ジャッジ日時 | 2026-06-05 06:06:03 |
| 合計ジャッジ時間 | 6,479 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | WA * 7 |
ソースコード
const solution = (s: string) => {
const sharpList = ["A", "C", "D", "F", "G"];
if (sharpList.includes(s)) {
return s + "#";
}
if (s === "E") {
return "F";
}
return "C";
};