結果

問題 No.2920 Blood Type
ユーザー 👑 KA37RIKA37RI
提出日時 2024-08-12 14:24:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,546 ms / 2,000 ms
コード長 944 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,824 KB
最終ジャッジ日時 2024-08-12 14:27:19
合計ジャッジ時間 58,662 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,541 ms
77,184 KB
testcase_01 AC 1,540 ms
77,340 KB
testcase_02 AC 1,539 ms
77,184 KB
testcase_03 AC 1,543 ms
77,056 KB
testcase_04 AC 1,541 ms
77,480 KB
testcase_05 AC 1,541 ms
77,184 KB
testcase_06 AC 1,539 ms
77,540 KB
testcase_07 AC 1,540 ms
77,536 KB
testcase_08 AC 1,540 ms
77,428 KB
testcase_09 AC 1,539 ms
77,440 KB
testcase_10 AC 1,539 ms
77,568 KB
testcase_11 AC 1,543 ms
77,184 KB
testcase_12 AC 1,543 ms
77,228 KB
testcase_13 AC 1,541 ms
77,824 KB
testcase_14 AC 1,541 ms
77,372 KB
testcase_15 AC 1,541 ms
77,428 KB
testcase_16 AC 1,544 ms
77,604 KB
testcase_17 AC 1,541 ms
77,312 KB
testcase_18 AC 1,546 ms
77,184 KB
testcase_19 AC 1,542 ms
77,528 KB
testcase_20 AC 1,540 ms
77,312 KB
testcase_21 AC 1,539 ms
77,312 KB
testcase_22 AC 1,541 ms
77,020 KB
testcase_23 AC 1,541 ms
77,016 KB
testcase_24 AC 1,542 ms
77,184 KB
testcase_25 AC 1,541 ms
77,516 KB
testcase_26 AC 1,542 ms
77,696 KB
testcase_27 AC 1,541 ms
77,100 KB
testcase_28 AC 1,541 ms
77,396 KB
testcase_29 AC 1,542 ms
77,312 KB
testcase_30 AC 1,542 ms
77,352 KB
testcase_31 AC 1,541 ms
77,452 KB
testcase_32 AC 1,541 ms
77,260 KB
testcase_33 AC 1,541 ms
77,044 KB
testcase_34 AC 1,542 ms
77,160 KB
testcase_35 AC 1,540 ms
77,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import time
import random
import sys

# 開始時間
start = time.perf_counter()

# 入力
s = input().strip()
t = input().strip()

# 実行時間制限
time_limit = 2.0

# 変数の初期化
baby = {"A": 0, "B": 0, "O": 0, "AB": 0}
count = 0

# およそ(TL - 0.5)秒ループ
while time.perf_counter() - start < time_limit - 0.5:
	
	# 試行回数 += 1
	count += 1
	
	# ランダムに取り出す
	x = {random.choice(s), random.choice(t)}
	
	# 問題文中の判定
	if "A" in x and "B" not in x:
		baby["A"] += 1
	elif "B" in x and "A" not in x:
		baby["B"] += 1
	elif "A" in x and "B" in x:
		baby["AB"] += 1
	else:
		baby["O"] += 1
	
# 割合を百分率で計算(誤差対策の為0.5を足して切り捨て)
a = int(baby["A"] / count * 100 + 0.5)
b = int(baby["B"] / count * 100 + 0.5)
ab = int(baby["AB"] / count * 100 + 0.5)
o = int(baby["O"] / count * 100 + 0.5)

# 出力
print(a, b, ab, o)
print(count, baby, file=sys.stderr)
0