結果
| 問題 |
No.5008 [Cherry Alpha] Discrete Pendulum with Air Resistance
|
| コンテスト | |
| ユーザー |
ikoma
|
| 提出日時 | 2022-10-14 23:11:22 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 93 ms / 2,000 ms |
| コード長 | 228 bytes |
| コンパイル時間 | 257 ms |
| 実行使用メモリ | 76,900 KB |
| スコア | 844,694,433,249,988 |
| 最終ジャッジ日時 | 2022-10-14 23:11:36 |
| 合計ジャッジ時間 | 11,817 ms |
|
ジャッジサーバーID (参考情報) |
judge8 / 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(7,12)
m = 7
if b<m:
b,m=m,b
e = 1
print(b,m,e)
ikoma