結果
問題 | No.744 循環小数N桁目 Easy |
ユーザー | Haruki0804S |
提出日時 | 2018-10-19 21:38:39 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 105 bytes |
コンパイル時間 | 95 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 91,976 KB |
最終ジャッジ日時 | 2024-11-18 20:13:52 |
合計ジャッジ時間 | 13,805 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 487 ms
49,548 KB |
testcase_01 | AC | 480 ms
91,432 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | AC | 491 ms
44,296 KB |
testcase_06 | RE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
ソースコード
import numpy as np N=input() n=int(N) x=2/7 x1=x*(10**n) a=np.floor(x1) y=a%10 y1=int(y) print(y1)