結果
問題 |
No.272 NOT回路
|
ユーザー |
|
提出日時 | 2016-12-10 03:48:36 |
言語 | Vim script (v9.1) |
結果 |
AC
|
実行時間 | 7 ms / 1,000 ms |
コード長 | 139 bytes |
コンパイル時間 | 119 ms |
コンパイル使用メモリ | 6,820 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2025-02-07 08:48:29 |
合計ジャッジ時間 | 837 ms |
ジャッジサーバーID (参考情報) |
judge2 / 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