結果
問題 | No.687 E869120 and Constructing Array 1 |
ユーザー |
![]() |
提出日時 | 2020-05-15 09:34:48 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 37 ms / 1,000 ms |
コード長 | 116 bytes |
コンパイル時間 | 341 ms |
コンパイル使用メモリ | 82,160 KB |
実行使用メモリ | 53,444 KB |
最終ジャッジ日時 | 2024-09-17 15:58:20 |
合計ジャッジ時間 | 1,381 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 6 |
ソースコード
n = int(input())for i in range(1, n):if 1 <= i <= 10 and 1 <= n-i <= 10:print(i, n-i)exit()