結果
| 問題 | No.2460 #強調# |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-10-31 12:27:04 |
| 言語 | TypeScript (6.0.2) |
| 結果 |
AC
|
| 実行時間 | 89 ms / 2,000 ms |
| コード長 | 232 bytes |
| 記録 | |
| コンパイル時間 | 4,458 ms |
| コンパイル使用メモリ | 345,304 KB |
| 実行使用メモリ | 52,472 KB |
| 最終ジャッジ日時 | 2026-06-05 12:16:16 |
| 合計ジャッジ時間 | 6,955 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 11 |
ソースコード
let lines: string[] = require("fs").readFileSync("/dev/stdin", "utf8").split("\n");
let S: string = lines[0];
let first: number = S.indexOf('#');
let last: number = S.indexOf('#', first+1);
console.log(S.substring(first+1, last));