結果

問題 No.744 循環小数N桁目 Easy
ユーザー ABKZABKZ
提出日時 2021-07-27 17:59:47
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 56 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 87,028 KB
実行使用メモリ 225,000 KB
最終ジャッジ日時 2023-09-30 21:27:01
合計ジャッジ時間 5,568 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
75,484 KB
testcase_01 AC 73 ms
71,180 KB
testcase_02 RE -
testcase_03 AC 73 ms
71,384 KB
testcase_04 RE -
testcase_05 AC 72 ms
71,184 KB
testcase_06 RE -
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

print(str((2 * pow(10, N)) // 7)[-1])
0