結果

問題 No.331 CodeRunnerでやれ
ユーザー titiatitia
提出日時 2023-01-18 06:20:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 256 bytes
コンパイル時間 434 ms
コンパイル使用メモリ 10,724 KB
実行使用メモリ 92,900 KB
平均クエリ数 9.35
最終ジャッジ日時 2023-09-24 03:08:51
合計ジャッジ時間 7,780 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
24,572 KB
testcase_01 AC 182 ms
24,508 KB
testcase_02 TLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from random import random

while True:
    x=input().strip()
    if len(x)>10:
        break
    else:
        x=int(x)

    r=random()

    if x>0:
        if r>0.8:
            print("R")
        else:
            print("F")

    else:
        print("R")
0