結果

問題 No.903 太郎の確率
ユーザー megane_ankomegane_anko
提出日時 2021-02-17 23:43:55
言語 TypeScript
(5.4.3)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 124 bytes
コンパイル時間 7,069 ms
コンパイル使用メモリ 253,096 KB
実行使用メモリ 42,676 KB
最終ジャッジ日時 2023-10-12 09:29:58
合計ジャッジ時間 8,393 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
42,676 KB
testcase_01 AC 75 ms
42,520 KB
testcase_02 AC 75 ms
42,296 KB
testcase_03 AC 75 ms
42,220 KB
testcase_04 AC 75 ms
42,244 KB
testcase_05 AC 76 ms
42,660 KB
testcase_06 AC 75 ms
42,360 KB
testcase_07 AC 75 ms
42,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import * as fs from 'fs';
const input = fs.readFileSync('/dev/stdin', 'utf8');

let N = parseInt(input);
console.log(1 / N);
0