結果
問題 |
No.2599 Summer Project
|
ユーザー |
|
提出日時 | 2024-01-12 22:16:16 |
言語 | JavaScript (node v23.5.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 251 bytes |
コンパイル時間 | 77 ms |
コンパイル使用メモリ | 6,820 KB |
実行使用メモリ | 39,936 KB |
最終ジャッジ日時 | 2024-09-27 22:44:34 |
合計ジャッジ時間 | 2,829 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 2 |
other | RE * 4 |
ソースコード
const fs = require('fs'); const input = fs.readFileSync('/dev/stdin'); const [s, t] = input.split('\n').map(x => x.trim()); const all = ['watermelon', 'beachball', 'shrinebell']; const result = all.filter(x => x !== s && x !== t); console.log(result);