結果
問題 | No.793 うし数列 2 |
ユーザー | hoge1e3 |
提出日時 | 2019-02-25 16:55:53 |
言語 | JavaScript (node v21.7.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 353 bytes |
コンパイル時間 | 50 ms |
コンパイル使用メモリ | 6,944 KB |
実行使用メモリ | 51,872 KB |
最終ジャッジ日時 | 2024-10-13 00:59:22 |
合計ジャッジ時間 | 4,672 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 70 ms
46,496 KB |
testcase_01 | AC | 75 ms
39,808 KB |
testcase_02 | AC | 73 ms
39,680 KB |
testcase_03 | AC | 70 ms
39,808 KB |
testcase_04 | AC | 71 ms
39,680 KB |
testcase_05 | AC | 92 ms
45,184 KB |
testcase_06 | AC | 110 ms
45,184 KB |
testcase_07 | AC | 95 ms
44,800 KB |
testcase_08 | AC | 113 ms
45,184 KB |
testcase_09 | AC | 101 ms
44,928 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
ソースコード
var fs = require('fs'); var length = fs.fstatSync(process.stdin.fd).size; var buffer = Buffer.alloc(length); var bytesRead = fs.readSync(process.stdin.fd, buffer, 0, length, 0); var input = buffer.toString('utf8', 0, bytesRead); var m=1000000007; var n=(input-1)%(m-1)+1; //var n=(r[1].length); var b=1; while(n--) { b=(b*10+3)%m; } console.log(b);