結果
| 問題 |
No.304 鍵(1)
|
| コンテスト | |
| ユーザー |
monburan_0401
|
| 提出日時 | 2019-05-05 12:42:47 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 113 bytes |
| コンパイル時間 | 346 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 42,404 KB |
| 最終ジャッジ日時 | 2024-07-16 17:09:40 |
| 合計ジャッジ時間 | 6,810 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | TLE * 1 -- * 5 |
ソースコード
s = int(input())
p = int(input())
while s != p:
print("locked")
p = int(input())
print("unlocked")
monburan_0401