結果
問題 |
No.835 ジュース
|
ユーザー |
![]() |
提出日時 | 2022-07-03 19:33:02 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 31 ms / 2,000 ms |
コード長 | 308 bytes |
コンパイル時間 | 91 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-11-29 15:38:41 |
合計ジャッジ時間 | 974 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 6 |
ソースコード
fmt_scan = [] def main(): n = next_int() m = int(n * 1.5) print(m) def next_int(): return int(next_str()) def next_str(): if len(fmt_scan) == 0: for v in input().split()[::-1]: fmt_scan.append(v) res = fmt_scan[-1] fmt_scan.pop() return res main()