結果

問題 No.687 E869120 and Constructing Array 1
ユーザー first_vilfirst_vil
提出日時 2020-06-04 22:37:32
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 86 ms / 1,000 ms
コード長 56 bytes
コンパイル時間 2,290 ms
コンパイル使用メモリ 86,740 KB
実行使用メモリ 71,404 KB
最終ジャッジ日時 2023-08-20 15:19:20
合計ジャッジ時間 3,681 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
71,316 KB
testcase_01 AC 85 ms
71,376 KB
testcase_02 AC 79 ms
71,276 KB
testcase_03 AC 81 ms
71,256 KB
testcase_04 AC 79 ms
71,300 KB
testcase_05 AC 77 ms
71,344 KB
testcase_06 AC 79 ms
71,404 KB
testcase_07 AC 83 ms
71,052 KB
testcase_08 AC 86 ms
71,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
if n<=10:print(1,n-1)
else:print(10,n-10)
0