結果
問題 | No.481 1から10 |
ユーザー | kouyou1027 |
提出日時 | 2018-11-26 16:03:10 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 33 ms / 2,000 ms |
コード長 | 159 bytes |
コンパイル時間 | 326 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-12-30 19:11:14 |
合計ジャッジ時間 | 1,200 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 8 |
ソースコード
x = [int(x) for x in input().split()] if x == [1,2,3,4,5,6,7,8,9]: print(10) for i in range(0,9): if x[i] != i + 1: print(i+1) break