結果
| 問題 |
No.5008 [Cherry Alpha] Discrete Pendulum with Air Resistance
|
| コンテスト | |
| ユーザー |
ikoma
|
| 提出日時 | 2022-10-14 22:43:28 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 104 ms / 2,000 ms |
| コード長 | 261 bytes |
| コンパイル時間 | 261 ms |
| 実行使用メモリ | 76,868 KB |
| スコア | 0 |
| 最終ジャッジ日時 | 2022-10-14 22:43:42 |
| 合計ジャッジ時間 | 13,119 ms |
|
ジャッジサーバーID (参考情報) |
judge11 / judge14 |
| 純コード判定しない問題か言語 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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(1,10**9)
m = randint(1,10**9)
if b<m:
b,m=m,b
e = randint(1,10**9)
print(b,m,e)
ikoma