結果

問題 No.744 循環小数N桁目 Easy
ユーザー Haruki0804SHaruki0804S
提出日時 2018-10-19 22:03:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 118 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 52,856 KB
最終ジャッジ日時 2024-04-29 15:49:17
合計ジャッジ時間 8,476 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 513 ms
49,908 KB
testcase_01 AC 508 ms
43,656 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 520 ms
43,776 KB
testcase_06 RE -
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
import math
N=input()
n=int(N)
x=pow(10,n)

x1=2*x

a=np.floor(x1/7)
y=a%10
y1=int(y)
print(y1)



0