結果
| 問題 | No.671 1000000007 |
| コンテスト | |
| ユーザー |
megane_anko
|
| 提出日時 | 2021-03-10 11:43:15 |
| 言語 | TypeScript (6.0.2) |
| 結果 |
AC
|
| 実行時間 | 92 ms / 2,000 ms |
| コード長 | 243 bytes |
| 記録 | |
| コンパイル時間 | 4,761 ms |
| コンパイル使用メモリ | 349,144 KB |
| 実行使用メモリ | 53,220 KB |
| 最終ジャッジ日時 | 2026-06-05 05:31:32 |
| 合計ジャッジ時間 | 7,046 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 9 |
ソースコード
import * as fs from 'fs';
const input = fs.readFileSync('/dev/stdin', 'utf8');
const nlarray = input.split('\n');
const incorrect = nlarray[0].split('');
const correct = '1000000007';
console.log(Math.abs(incorrect.length - correct.length));
megane_anko