結果
| 問題 |
No.5008 [Cherry Alpha] Discrete Pendulum with Air Resistance
|
| コンテスト | |
| ユーザー |
ikoma
|
| 提出日時 | 2022-10-14 23:06:08 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 90 ms / 2,000 ms |
| コード長 | 227 bytes |
| コンパイル時間 | 315 ms |
| 実行使用メモリ | 76,900 KB |
| スコア | 856,863,087,379,944 |
| 最終ジャッジ日時 | 2022-10-14 23:06:23 |
| 合計ジャッジ時間 | 11,838 ms |
|
ジャッジサーバーID (参考情報) |
judge15 / judge10 |
| 純コード判定しない問題か言語 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 50 |
ソースコード
N,K=map(int,input().split())
T=list(map(int,input().split()))
U=list(map(int,input().split()))
from random import randint
for i in range(N):
b = randint(5,10)
m = 5
if b<m:
b,m=m,b
e = 1
print(b,m,e)
ikoma