結果
問題 |
No.272 NOT回路
|
ユーザー |
![]() |
提出日時 | 2016-12-10 16:16:57 |
言語 | Vim script (v9.1) |
結果 |
AC
|
実行時間 | 10 ms / 1,000 ms |
コード長 | 140 bytes |
コンパイル時間 | 61 ms |
コンパイル使用メモリ | 5,248 KB |
実行使用メモリ | 11,776 KB |
最終ジャッジ日時 | 2024-11-29 00:47:13 |
合計ジャッジ時間 | 1,011 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 11 |
ソースコード
function! s:main(input) abort return a:input[0] == 0 ? 1 : 0 endfunction let s:input = getline(1, '$') enew put =s:main(s:input) 2,$print