結果
問題 | No.163 cAPSlOCK |
ユーザー | 濱田孝治 |
提出日時 | 2020-08-06 16:17:05 |
言語 | TypeScript (5.4.3) |
結果 |
CE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 784 bytes |
コンパイル時間 | 3,795 ms |
コンパイル使用メモリ | 145,396 KB |
最終ジャッジ日時 | 2024-04-27 03:19:19 |
合計ジャッジ時間 | 4,188 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
main.ts(1,27): error TS2307: Cannot find module 'querystring' or its corresponding type declarations. main.ts(29,6): error TS2580: Cannot find name 'require'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.
ソースコード
import { stringify } from "querystring"; function isUpperCase(input: string): boolean { if (input == input.toUpperCase()) { return true } else { return false; } } function Main(input: any) { // inputにはすべての入力の文字列が与えられるので必要に応じて input.split("\n") などで分割する。 const data = input.split("\n"); const first_line = data[0].split(" "); const S: string = first_line[0]; let answer: string = ""; for (let i: number = 0; i < S.length; i++) { if (isUpperCase(S.substr(i, 1))) { answer += S.substr(i, 1).toLowerCase(); } else { answer += S.substr(i, 1).toUpperCase(); } } console.log(answer); } // Don't edit this line! Main(require("fs").readFileSync("/dev/stdin", "utf8"));