結果

問題 No.331 CodeRunnerでやれ
ユーザー titiatitia
提出日時 2023-01-18 06:18:08
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 256 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 86,772 KB
実行使用メモリ 158,688 KB
平均クエリ数 3.12
最終ジャッジ日時 2023-09-24 03:08:59
合計ジャッジ時間 8,231 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 257 ms
87,584 KB
testcase_01 AC 276 ms
72,368 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