結果

問題 No.331 CodeRunnerでやれ
ユーザー titiatitia
提出日時 2023-01-18 06:18:08
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 256 bytes
コンパイル時間 407 ms
コンパイル使用メモリ 81,260 KB
実行使用メモリ 93,472 KB
平均クエリ数 4066.76
最終ジャッジ日時 2024-07-17 03:15:30
合計ジャッジ時間 8,148 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 203 ms
70,708 KB
testcase_01 AC 206 ms
71,676 KB
testcase_02 AC 4,245 ms
93,472 KB
testcase_03 AC 353 ms
79,084 KB
testcase_04 AC 358 ms
79,300 KB
testcase_05 AC 411 ms
80,076 KB
testcase_06 AC 449 ms
81,564 KB
testcase_07 TLE -
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